mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
35 lines
832 B
Python
35 lines
832 B
Python
__all__ = [
|
|
"BfxBaseException",
|
|
|
|
"LabelerSerializerException",
|
|
"IntegerUnderflowError",
|
|
"IntegerOverflowflowError"
|
|
]
|
|
|
|
class BfxBaseException(Exception):
|
|
"""
|
|
Base class for every custom exception in bfxapi/rest/exceptions.py and bfxapi/websocket/exceptions.py.
|
|
"""
|
|
|
|
pass
|
|
|
|
class LabelerSerializerException(BfxBaseException):
|
|
"""
|
|
This exception indicates an error thrown by the _Serializer class in bfxapi/labeler.py.
|
|
"""
|
|
|
|
pass
|
|
|
|
class IntegerUnderflowError(BfxBaseException):
|
|
"""
|
|
This error indicates an underflow in one of the integer types defined in bfxapi/utils/integers.py.
|
|
"""
|
|
|
|
pass
|
|
|
|
class IntegerOverflowflowError(BfxBaseException):
|
|
"""
|
|
This error indicates an overflow in one of the integer types defined in bfxapi/utils/integers.py.
|
|
"""
|
|
|
|
pass |