Exceptions
ApiSetupError
¶
Bases: QuickApiException
An error setting up the BaseApi
subclass.
Source code in quickapi/exceptions.py
Python | |
---|---|
22 23 24 25 26 27 28 29 |
|
ClientSetupError
¶
Bases: QuickApiException
An error setting up the BaseClient
subclass.
Source code in quickapi/exceptions.py
Python | |
---|---|
12 13 14 15 16 17 18 19 |
|
DictDeserializationError
¶
Bases: QuickApiException
Dict deserialization failed.
Source code in quickapi/exceptions.py
Python | |
---|---|
63 64 65 66 67 68 69 70 |
|
DictSerializationError
¶
Bases: QuickApiException
Dict serialization failed.
Source code in quickapi/exceptions.py
Python | |
---|---|
53 54 55 56 57 58 59 60 |
|
HTTPError
¶
Bases: QuickApiException
The response received a non 200
response status code.
Source code in quickapi/exceptions.py
Python | |
---|---|
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|
MissingDependencyError
¶
Bases: QuickApiException
Trying to use an optional dependency without installing it first.
Source code in quickapi/exceptions.py
Python | |
---|---|
91 92 93 94 95 96 97 98 99 |
|
QuickApiException
¶
Bases: Exception
A QuickApi exception has occurred.
Source code in quickapi/exceptions.py
Python | |
---|---|
8 9 |
|
RequestSerializationError
¶
Bases: QuickApiException
The request was not serializable to the configured type.
Source code in quickapi/exceptions.py
Python | |
---|---|
81 82 83 84 85 86 87 88 |
|
ResponseSerializationError
¶
Bases: QuickApiException
The response received was not serializable to the configured response_body
type.
Source code in quickapi/exceptions.py
Python | |
---|---|
73 74 75 76 77 78 |
|