mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
16 lines
397 B
Python
16 lines
397 B
Python
__all__ = [
|
|
"BfxBaseException",
|
|
|
|
"LabelerSerializerException",
|
|
]
|
|
|
|
class BfxBaseException(Exception):
|
|
"""
|
|
Base class for every custom exception in bfxapi/rest/exceptions.py and bfxapi/websocket/exceptions.py.
|
|
"""
|
|
|
|
class LabelerSerializerException(BfxBaseException):
|
|
"""
|
|
This exception indicates an error thrown by the _Serializer class in bfxapi/labeler.py.
|
|
"""
|
|
|