networkConnectTimeoutError constant

HttpStatus const networkConnectTimeoutError

599 NETWORK CONNECT TIMEOUT ERROR.

This status code is not specified in any RFCs, but is used by some HTTP proxies to signal a network connect timeout behind the proxy to a client in front of the proxy.

Implementation

static const HttpStatus networkConnectTimeoutError = HttpStatus._(
  code: HttpStatusCode.networkConnectTimeoutError,
  name: 'Network Connect Timeout Error',
  description: 'This status code is not specified in any RFCs, but is used '
      'by some HTTP proxies to signal a network connect timeout behind '
      'the proxy to a client in front of the proxy.',
);