mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
14 lines
355 B
Python
14 lines
355 B
Python
__all__ = [
|
|
"BfxBaseException",
|
|
]
|
|
|
|
class BfxBaseException(Exception):
|
|
"""
|
|
Base class for every custom exception in bfxapi/rest/exceptions.py and bfxapi/websocket/exceptions.py.
|
|
"""
|
|
|
|
class IncompleteCredentialError(BfxBaseException):
|
|
"""
|
|
This error indicates an incomplete credential object (missing api-key or api-secret).
|
|
"""
|