mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 22:34:21 +01:00
11 lines
239 B
Python
11 lines
239 B
Python
class BfxBaseException(Exception):
|
|
"""
|
|
Base class for every custom exception thrown by bitfinex-api-py.
|
|
"""
|
|
|
|
class IncompleteCredentialError(BfxBaseException):
|
|
pass
|
|
|
|
class InvalidCredentialError(BfxBaseException):
|
|
pass
|