InternalServerErrorException constructor
const
InternalServerErrorException(
- String message
Creates an InternalServerErrorException with the specified message
.
The message
is a human-readable description of the internal server error.
Implementation
const InternalServerErrorException(String message)
: super(message, HttpStatus.internalServerError);