Fix small bug in module bfxapi.exceptions.

This commit is contained in:
Davide Casale
2023-10-09 16:27:04 +02:00
parent 25881e77c8
commit 378e89b504
3 changed files with 25 additions and 60 deletions

View File

@@ -1,13 +0,0 @@
__all__ = [
"BfxBaseException",
]
class BfxBaseException(Exception):
"""
Base class for every custom exception in bfxapi/rest/exceptions.py and bfxapi/websocket/exceptions.py.
"""
class IncompleteCredentialError(BfxBaseException):
"""
This error indicates an incomplete credential object (missing api-key or api-secret).
"""