mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
13 lines
370 B
Python
13 lines
370 B
Python
class ConnectionNotOpen(Exception):
|
|
"""
|
|
This error indicates an attempt to communicate via websocket before starting the connection with the servers.
|
|
"""
|
|
|
|
pass
|
|
|
|
class AuthenticationCredentialsError(Exception):
|
|
"""
|
|
This error indicates that the user has provided incorrect credentials (API-KEY and API-SECRET) for authentication.
|
|
"""
|
|
|
|
pass |