Like :exc:`ConnectionClosed`, when the connection terminated with an error. A close frame with a code other than 1000 (OK) or 1001 (going away) was received or sent, or the closing handshake didn't complete properly.
| 154 | |
| 155 | |
| 156 | class ConnectionClosedError(ConnectionClosed): |
| 157 | """ |
| 158 | Like :exc:`ConnectionClosed`, when the connection terminated with an error. |
| 159 | |
| 160 | A close frame with a code other than 1000 (OK) or 1001 (going away) was |
| 161 | received or sent, or the closing handshake didn't complete properly. |
| 162 | |
| 163 | """ |
| 164 | |
| 165 | |
| 166 | class InvalidURI(WebSocketException): |
no outgoing calls
searching dependent graphs…