Errors due to improper user requests.
Inherits: ApplicationException
Description
The BadRequestException class is used to manage errors created by improper user requests. For example, when there are missing or incorrect parameters in the request.
Constructors
Creates an error instance and assigns its values.
public
BadRequestException(string correlationId = null, string code = null, string message = null)
- correlationId: string - (optional) unique transaction id used to trace execution through the call chain.
- code: string - (optional) unique error code. Default: “UNKNOWN”
- message: string - (optional) human-readable description of the error.
Creates an error instance with an error message.
public
BadRequestException(string message)
- message: string - human-readable description of the error.
Creates an error instance with a bad request error category and assigns its values.
public
BadRequestException(Exception innerException)
- innerException: Exception - error object
Creates an error instance.
protected
BadRequestException(SerializationInfo info, StreamingContext context)
- info: SerializationInfo - serialization information
- context: StreamingContext - streaming context