Raised when receiving or sending a frame that breaks the protocol. The Sans-I/O implementation raises this exception when: * receiving or sending a frame that contains invalid data; * receiving or sending an invalid sequence of frames.
| 367 | |
| 368 | |
| 369 | class ProtocolError(WebSocketException): |
| 370 | """ |
| 371 | Raised when receiving or sending a frame that breaks the protocol. |
| 372 | |
| 373 | The Sans-I/O implementation raises this exception when: |
| 374 | |
| 375 | * receiving or sending a frame that contains invalid data; |
| 376 | * receiving or sending an invalid sequence of frames. |
| 377 | |
| 378 | """ |
| 379 | |
| 380 | |
| 381 | class PayloadTooBig(WebSocketException): |
no outgoing calls
searching dependent graphs…