sendError method

FutureOr<Response> sendError(
  1. Request req,
  2. dynamic error
)

Sends error serialized as ErrorDescription object and appropriate HTTP status code. If status code is not defined, it uses 500 status code.

  • req a HTTP request object.
  • res a HTTP response object.
  • error an error object to be sent.

Implementation

FutureOr<Response> sendError(Request req, error) async {
  return await HttpResponseSender.sendError(req, error);
}