Remove useless and redundant docstrings from custom exceptions.

This commit is contained in:
Davide Casale
2023-10-26 06:41:42 +02:00
parent c02d6d7bf8
commit b082891c41
7 changed files with 40 additions and 70 deletions

10
bfxapi/exceptions.py Normal file
View File

@@ -0,0 +1,10 @@
class BfxBaseException(Exception):
"""
Base class for every custom exception thrown by bitfinex-api-py.
"""
class IncompleteCredentialError(BfxBaseException):
pass
class InvalidCredentialError(BfxBaseException):
pass