insufficientSpaceOnResource constant

HttpStatus const insufficientSpaceOnResource

419 Insufficient Space On Resource.

The HTTP 419 Insufficient Space On Resource client error response code indicates that the server cannot store the representation needed to complete the request. This status code is similar to 507 (Insufficient Storage), but it is specific to the server's inability to allocate sufficient space on the resource to fulfill the request.

Implementation

static const HttpStatus insufficientSpaceOnResource = HttpStatus._(
  code: HttpStatusCode.insufficientSpaceOnResource,
  name: 'Insufficient Space On Resource',
  description: 'The HTTP 419 Insufficient Space On Resource client error '
      'response code indicates that the server cannot store '
      'the representation needed to complete the request. This status code '
      'is similar to 507 (Insufficient Storage), but it is specific to '
      'the server\'s inability to allocate sufficient space on the resource '
      'to fulfill the request.',
);