blob: 9fec53d2ee4485bc618b7ba58bfe606b54d0e4ee (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class NotConnectedError(Exception):
"""
Raised when operations requiring a connection are executed when socket is not connected
"""
def __init__(self, func_name: str):
self.offending_func_name: str = func_name
def __str__(self):
return f"A WS connection has not been established. Ensure you call RealtimeClient.connect() before calling RealtimeClient.{self.offending_func_name}()"
class AuthorizationError(Exception):
"""
Raised when there is an authorization failure for private channels
"""
def __init__(self, message: str = None):
self.message: str = message or "Authorization failed for private channel"
def __str__(self):
return self.message
|