namespace DigitalData.Core.Exceptions;
///
/// Represents an exception that is thrown when a bad request is encountered.
///
public class BadRequestException : Exception
{
///
/// Initializes a new instance of the class.
///
public BadRequestException()
{
}
///
/// Initializes a new instance of the class with a specified error message.
///
/// The message that describes the error.
public BadRequestException(string? message) : base(message)
{
}
}