Expand description
HTTP related well-known errors.
Structs§
- BadRequest
- A
400 - Bad Requesterror. - Conflict
- A
409 - Conflicterror. - Forbidden
- A
403 - ForbiddenHTTP error. - Internal
Error - A
500 - Internal Server Errorerror. - NotFound
- A
404 - Not Founderror. - Precondition
Failed - A
419 - Precondition Failederror. - Service
Unavailable - A
503 - Service Unavailableerror. - Unauthorized
- A
401 - UnauthorizedHTTP error. - Unprocessable
Entity - A
422 - Unprocessable Entityerror.
Functions§
- bad_
request - Create a
Probleminstance with aBadRequestcause. - conflict
- Create a
Probleminstance with aConflictcause. - failed_
precondition - Create a
Probleminstance with aPreconditionFailedcause. - forbidden
- Create a
Probleminstance with anForbiddencause. - internal_
error - Create a
Probleminstance with no available cause. - not_
found - Create a
Probleminstance with aNotFoundcause. - not_
found_ unknown - Create a
Probleminstance with aNotFoundcause with an unknown identifier. - service_
unavailable - Create a
Probleminstance with aServiceUnavailablecause. - unauthorized
- Create a
Probleminstance with anUnauthorizedcause. - unprocessable
- Create a
Probleminstance with anUnprocessableEntitycause.