Type Alias ClientErrorStatus

ClientErrorStatus:
    | typeof BadRequest
    | typeof Unauthorized
    | typeof PaymentRequired
    | typeof Forbidden
    | typeof NotFound
    | typeof MethodNotAllowed
    | typeof NotAcceptable
    | typeof ProxyAuthRequired
    | typeof RequestTimeout
    | typeof Conflict
    | typeof Gone
    | typeof LengthRequired
    | typeof PreconditionFailed
    | typeof ContentTooLarge
    | typeof URITooLong
    | typeof UnsupportedMediaType
    | typeof RangeNotSatisfiable
    | typeof ExpectationFailed
    | typeof Teapot
    | typeof MisdirectedRequest
    | typeof UnprocessableEntity
    | typeof Locked
    | typeof FailedDependency
    | typeof UpgradeRequired
    | typeof PreconditionRequired
    | typeof TooManyRequests
    | typeof RequestHeaderFieldsTooLarge
    | typeof UnavailableForLegalReasons

An HTTP status that is a client error (4XX).