mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-24 09:14:24 +01:00
17 lines
348 B
Python
17 lines
348 B
Python
__all__ = [
|
|
"RequestParametersError"
|
|
]
|
|
|
|
class BfxRestException(Exception):
|
|
"""
|
|
Base class for all exceptions defined in bfxapi/rest/exceptions.py.
|
|
"""
|
|
|
|
pass
|
|
|
|
class RequestParametersError(BfxRestException):
|
|
"""
|
|
This error indicates that there are some invalid parameters sent along with an HTTP request.
|
|
"""
|
|
|
|
pass |