InternalServerErrorException constructor

const InternalServerErrorException(
  1. 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);