Raised when a socket timeout occurs while connecting to a server
| 136 | # This timeout error does not have a URL attached and needs to inherit from the |
| 137 | # base HTTPError |
| 138 | class ConnectTimeoutError(TimeoutError): |
| 139 | """Raised when a socket timeout occurs while connecting to a server""" |
| 140 | |
| 141 | |
| 142 | class NewConnectionError(ConnectTimeoutError, HTTPError): |
no outgoing calls