Base class for exceptions raised when the opening handshake fails.
| 192 | |
| 193 | |
| 194 | class InvalidHandshake(WebSocketException): |
| 195 | """ |
| 196 | Base class for exceptions raised when the opening handshake fails. |
| 197 | |
| 198 | """ |
| 199 | |
| 200 | |
| 201 | class SecurityError(InvalidHandshake): |