mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2026-02-02 12:24:23 +01:00
11 lines
209 B
Python
11 lines
209 B
Python
from bfxapi.exceptions import BfxBaseException
|
|
|
|
class NotFoundError(BfxBaseException):
|
|
pass
|
|
|
|
class RequestParametersError(BfxBaseException):
|
|
pass
|
|
|
|
class UnknownGenericError(BfxBaseException):
|
|
pass
|