Method
__init__
(self, status=None, body=None, exception=None, traceback=None,
**options)
Source from the content-addressed store, hash-verified
| 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 | |
Callers
nothing calls this directly
Tested by
no test coverage detected