loopDetected constant

HttpStatus const loopDetected

508 LOOP DETECTED.

The server terminated an operation because it encountered an infinite loop while processing a request with "Depth: infinity". This status indicates that the entire operation failed.

Implementation

static const HttpStatus loopDetected = HttpStatus._(
  code: HttpStatusCode.loopDetected,
  name: 'Loop Detected',
  description:
      'The server terminated an operation because it encountered an infinite '
      'loop while processing a request with "Depth: infinity". '
      'This status indicates that the entire operation failed.',
);