Add and implement new IncompleteCredentialError in bfxapi.client.

This commit is contained in:
Davide Casale
2023-06-23 17:27:25 +02:00
parent 755ee767a8
commit faffb7fe82
3 changed files with 32 additions and 9 deletions

View File

@@ -6,3 +6,8 @@ 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).
"""