mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 22:34:21 +01:00
18 lines
544 B
Python
18 lines
544 B
Python
# pylint: disable-next=wildcard-import,unused-wildcard-import
|
|
from bfxapi._exceptions import *
|
|
|
|
class ResourceNotFound(BfxBaseException):
|
|
"""
|
|
This error indicates a failed HTTP request to a non-existent resource.
|
|
"""
|
|
|
|
class RequestParametersError(BfxBaseException):
|
|
"""
|
|
This error indicates that there are some invalid parameters sent along with an HTTP request.
|
|
"""
|
|
|
|
class UnknownGenericError(BfxBaseException):
|
|
"""
|
|
This error indicates an undefined problem processing an HTTP request sent to the APIs.
|
|
"""
|