Errors¶
- class FwError¶
Base error type of the package
- class FwInitializationError¶
Represents a client initialization error
- class FwFinalizationError¶
Represents a client finalization error
- class FwValidationError(attr: str, value: Any)¶
Represents a user data validation error
- class FwParsingError(attr: str, issue: str)¶
Represents a response parsing error
- class FwNetworkError¶
Represents a client network error
- class FwBadResponseStatusError(code: int, msg: str)¶
Represents a non-2xx response error
- property code: int¶
Response status code
- class FwUnexpectedResponseStatusError(code: int)¶
Represents an unexpected response error
- class FwTokenRejectedError¶
Represents an authorization error. Corresponds to response 401
- class FwNotFoundError¶
Represents a resource not found error. Corresponds to response 404
- class FwTooManyRequestsError¶
Represents a too many requests error. Corresponds to response 429