Exceptions
Exceptions relating to response operations.
Exceptions:
|
Exception raised for errors relating to responses from HTTP requests. |
Error raised when handling a response's payload. |
|
Error raised when handling a response based on its status code. |
- exception aiorequestful.response.exception.ResponseError(message=None, response=None)
Bases:
HTTPError
Exception raised for errors relating to responses from HTTP requests.
- Parameters:
message (
str
(default:None
)) – Explanation of the error.response (
ClientResponse
|None
(default:None
)) – TheClientResponse
related to the error.
- exception aiorequestful.response.exception.PayloadHandlerError
Bases:
AIORequestfulError
Error raised when handling a response’s payload.
- exception aiorequestful.response.exception.StatusHandlerError
Bases:
AIORequestfulError
Error raised when handling a response based on its status code.