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

14 lines
212 B
Python

from bfxapi.exceptions import BfxBaseException
class NotFoundError(BfxBaseException):
pass
class RequestParametersError(BfxBaseException):
pass
class UnknownGenericError(BfxBaseException):
pass