| 1478 | __all__.append("HTTPSConnection") |
| 1479 | |
| 1480 | class HTTPException(Exception): |
| 1481 | # Subclasses that define an __init__ must call Exception.__init__ |
| 1482 | # or define self.args. Otherwise, str() will fail. |
| 1483 | pass |
| 1484 | |
| 1485 | class NotConnected(HTTPException): |
| 1486 | pass |