Handle500 constructor

Handle500()

Implementation

Handle500()
    : super(
        statusCode: 500,
        callback: () {
          throw InternalServerException();
        },
      );