8 lines
259 B
Python
8 lines
259 B
Python
|
class ClientError(Exception):
|
||
|
"""
|
||
|
Custom exception class that is caught by the websocket receive()
|
||
|
handler and translated into a send back to the client.
|
||
|
"""
|
||
|
def __init__(self, code):
|
||
|
super().__init__(code)
|
||
|
self.code = code
|