failedDependency constant

HttpStatus const failedDependency

424 FAILED DEPENDENCY.

The method could not be performed on the resource because the requested action depended on another action and that action failed.

For example, if a command in a PROPPATCH method fails, then, at minimum, the rest of the commands will also fail with 424 Failed Dependency.

Implementation

static const HttpStatus failedDependency = HttpStatus._(
  code: HttpStatusCode.failedDependency,
  name: 'Failed Dependency',
  description: 'The method could not be performed on the resource because '
      'the requested action depended on another action and '
      'that action failed.',
);