Response.InternalServerError constructor
Response.InternalServerError([
- String? body
Constructor for 500 internal server error responses.
Implementation
Response.InternalServerError([String? body])
: this(HttpStatus.internalServerError, body: body);