You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
378 B
20 lines
378 B
6 years ago
|
from socket import error as socket_error
|
||
|
|
||
|
|
||
|
class WebSocketError(socket_error):
|
||
|
"""
|
||
|
Base class for all websocket errors.
|
||
|
"""
|
||
|
|
||
|
|
||
|
class ProtocolError(WebSocketError):
|
||
|
"""
|
||
|
Raised if an error occurs when de/encoding the websocket protocol.
|
||
|
"""
|
||
|
|
||
|
|
||
|
class FrameTooLargeException(ProtocolError):
|
||
|
"""
|
||
|
Raised if a frame is received that is too large.
|
||
|
"""
|