Files
bitfinex-api-py/bfxapi/exceptions.py
2024-02-26 19:43:14 +01:00

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