| 1715 | |
| 1716 | |
| 1717 | class HTTPError(HTTPResponse): |
| 1718 | default_status = 500 |
| 1719 | def __init__(self, status=None, body=None, exception=None, traceback=None, |
| 1720 | **options): |
| 1721 | self.exception = exception |
| 1722 | self.traceback = traceback |
| 1723 | super(HTTPError, self).__init__(body, status, **options) |
| 1724 | |
| 1725 | |
| 1726 |
no outgoing calls
no test coverage detected