Hamid Afghan
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
11 additions and
2 deletions
-
docs_src/handling_errors/tutorial004.py
|
|
@ -1,6 +1,7 @@ |
|
|
|
from fastapi import FastAPI, HTTPException |
|
|
|
from fastapi import FastAPI, HTTPException, Request, status |
|
|
|
from fastapi.encoders import jsonable_encoder |
|
|
|
from fastapi.exceptions import RequestValidationError |
|
|
|
from fastapi.responses import PlainTextResponse |
|
|
|
from fastapi.responses import JSONResponse, PlainTextResponse |
|
|
|
from starlette.exceptions import HTTPException as StarletteHTTPException |
|
|
|
|
|
|
|
app = FastAPI() |
|
|
@ -11,6 +12,14 @@ async def http_exception_handler(request, exc): |
|
|
|
return PlainTextResponse(str(exc.detail), status_code=exc.status_code) |
|
|
|
|
|
|
|
|
|
|
|
@app.exception_handler(status.HTTP_500_INTERNAL_SERVER_ERROR) |
|
|
|
async def internal_exception_handler(request: Request, exc: Exception): |
|
|
|
return JSONResponse( |
|
|
|
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, |
|
|
|
content=jsonable_encoder({"message": "Internal Server Error"}), |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
@app.exception_handler(RequestValidationError) |
|
|
|
async def validation_exception_handler(request, exc): |
|
|
|
return PlainTextResponse(str(exc), status_code=400) |
|
|
|