<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">class HTTPException(Exception):
    def __init__(self, status_code: int, reason: str) -&gt; None:
        self.status_code = status_code
        self.reason = reason


__all__ = ["HTTPException"]
</pre></body></html>