Errors
Contains shared error types that can be raised from API functions
ConfigurationMissing
Bases: Exception
Raised by Eth2KeyManager class when base_url or token is not specified.
Source code in eth_2_key_manager_api_client/errors.py
24 25 26 27 28 29 30 |
|
ModelClassUnspecified
Bases: Exception
Raised by _parse_response when the response status is 200 but no response model is specified.
Source code in eth_2_key_manager_api_client/errors.py
14 15 16 17 18 19 20 21 |
|
UnexpectedStatus
Bases: Exception
Raised by api functions when the response status an undocumented status and Client.raise_on_unexpected_status is True.
Source code in eth_2_key_manager_api_client/errors.py
4 5 6 7 8 9 10 11 |
|