mit neuen venv und exe-Files
This commit is contained in:
19
venv3_12/Lib/site-packages/geventwebsocket/exceptions.py
Normal file
19
venv3_12/Lib/site-packages/geventwebsocket/exceptions.py
Normal file
@@ -0,0 +1,19 @@
|
||||
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.
|
||||
"""
|
||||
Reference in New Issue
Block a user