clientClosedRequest constant

HttpStatus const clientClosedRequest

499 CLIENT CLOSED REQUEST.

A non-standard status code introduced by nginx for the case when a client closes the connection while nginx is processing the request.

Implementation

static const HttpStatus clientClosedRequest = HttpStatus._(
  code: HttpStatusCode.clientClosedRequest,
  name: 'Client Closed Request',
  description:
      'A non-standard status code introduced by nginx for the case when '
      'a client closes the connection while nginx is processing the request.',
);