InternalServerErrorException constructor

InternalServerErrorException(
  1. {String? type,
  2. String? message}
)

Implementation

InternalServerErrorException({String? type, String? message})
    : super(
          type: type, code: 'InternalServerErrorException', message: message);