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) { } /// /// Initializes a new instance of the class with a specified error message and inner exception. /// /// The message that describes the error. /// The exception that caused the current exception. public BadRequestException(string? message, Exception? innerException) : base(message, innerException) { } }