UnprocessableEntityException constructor
const
UnprocessableEntityException(
- String message
Creates an UnprocessableEntityException with the specified message
.
The message
is a human-readable description of the unprocessable entity error.
Implementation
const UnprocessableEntityException(String message)
: super(message, HttpStatus.unprocessableEntity);