Sebastián Ramírez
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
fastapi/exceptions.py
|
@ -1,10 +1,12 @@ |
|
|
|
|
|
from typing import Any |
|
|
|
|
|
|
|
|
from pydantic import ValidationError |
|
|
from pydantic import ValidationError |
|
|
from starlette.exceptions import HTTPException as StarletteHTTPException |
|
|
from starlette.exceptions import HTTPException as StarletteHTTPException |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HTTPException(StarletteHTTPException): |
|
|
class HTTPException(StarletteHTTPException): |
|
|
def __init__( |
|
|
def __init__( |
|
|
self, status_code: int, detail: str = None, headers: dict = None |
|
|
self, status_code: int, detail: Any = None, headers: dict = None |
|
|
) -> None: |
|
|
) -> None: |
|
|
super().__init__(status_code=status_code, detail=detail) |
|
|
super().__init__(status_code=status_code, detail=detail) |
|
|
self.headers = headers |
|
|
self.headers = headers |
|
|