Files
bitfinex-api-py/bfxapi/rest/exceptions.py
2023-10-09 16:27:04 +02:00

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.
"""