| 1502 | __all__.append("HTTPSConnection") |
| 1503 | |
| 1504 | class HTTPException(Exception): |
| 1505 | # Subclasses that define an __init__ must call Exception.__init__ |
| 1506 | # or define self.args. Otherwise, str() will fail. |
| 1507 | pass |
| 1508 | |
| 1509 | class NotConnected(HTTPException): |
| 1510 | pass |