| 1550 | pass |
| 1551 | |
| 1552 | class BadStatusLine(HTTPException): |
| 1553 | def __init__(self, line): |
| 1554 | if not line: |
| 1555 | line = repr(line) |
| 1556 | self.args = line, |
| 1557 | self.line = line |
| 1558 | |
| 1559 | class LineTooLong(HTTPException): |
| 1560 | def __init__(self, line_type): |