Exceptions

Inheritance diagram of aiorequestful.response.exception

Exceptions relating to response operations.

Exceptions:

ResponseError([message, response])

Exception raised for errors relating to responses from HTTP requests.

PayloadHandlerError

Error raised when handling a response's payload.

StatusHandlerError

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)) – The ClientResponse 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.