mirror of https://github.com/tiangolo/fastapi.git
10 lines
322 B
Python
10 lines
322 B
Python
from starlette.exceptions import HTTPException as StarletteHTTPException
|
|
|
|
|
|
class HTTPException(StarletteHTTPException):
|
|
def __init__(
|
|
self, status_code: int, detail: str = None, headers: dict = None
|
|
) -> None:
|
|
super().__init__(status_code=status_code, detail=detail)
|
|
self.headers = headers
|