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