Exceptions

Inheritance diagram of aiorequestful.exception

Core exceptions for the entire package.

Exceptions:

AIORequestfulError

Generic base class for all aiorequestful-related errors

InputError

Exception raised when the given input is invalid.

AIORequestfulImportError

Exception raised for import errors, usually from missing modules.

HTTPError

Exception raised for generic HTTP errors.

RequestError

Exception raised for errors relating to HTTP requests.

exception aiorequestful.exception.AIORequestfulError

Bases: Exception

Generic base class for all aiorequestful-related errors

exception aiorequestful.exception.InputError

Bases: AIORequestfulError, ValueError

Exception raised when the given input is invalid.

exception aiorequestful.exception.AIORequestfulImportError

Bases: AIORequestfulError, ImportError

Exception raised for import errors, usually from missing modules.

exception aiorequestful.exception.HTTPError

Bases: AIORequestfulError

Exception raised for generic HTTP errors.

exception aiorequestful.exception.RequestError

Bases: HTTPError

Exception raised for errors relating to HTTP requests.