diff --git a/fastapi/exceptions.py b/fastapi/exceptions.py index 97f955a73..cbd82b44a 100644 --- a/fastapi/exceptions.py +++ b/fastapi/exceptions.py @@ -1,10 +1,12 @@ +from typing import Any + from pydantic import ValidationError from starlette.exceptions import HTTPException as StarletteHTTPException class HTTPException(StarletteHTTPException): def __init__( - self, status_code: int, detail: str = None, headers: dict = None + self, status_code: int, detail: Any = None, headers: dict = None ) -> None: super().__init__(status_code=status_code, detail=detail) self.headers = headers