mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
14 lines
212 B
Python
14 lines
212 B
Python
from bfxapi.exceptions import BfxBaseException
|
|
|
|
|
|
class NotFoundError(BfxBaseException):
|
|
pass
|
|
|
|
|
|
class RequestParametersError(BfxBaseException):
|
|
pass
|
|
|
|
|
|
class UnknownGenericError(BfxBaseException):
|
|
pass
|