From ae6f937c7f0bc6f47fbe18d20b13b9c27c24864f Mon Sep 17 00:00:00 2001 From: Hamid Afghan Date: Wed, 4 Dec 2024 20:41:35 +0100 Subject: [PATCH 1/3] Add an other example to exception handler for internal server errors --- docs_src/handling_errors/tutorial004.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs_src/handling_errors/tutorial004.py b/docs_src/handling_errors/tutorial004.py index 300a3834f..b30a5001f 100644 --- a/docs_src/handling_errors/tutorial004.py +++ b/docs_src/handling_errors/tutorial004.py @@ -1,7 +1,9 @@ -from fastapi import FastAPI, HTTPException +from fastapi import FastAPI, HTTPException, status, Request from fastapi.exceptions import RequestValidationError from fastapi.responses import PlainTextResponse from starlette.exceptions import HTTPException as StarletteHTTPException +from fastapi.encoders import jsonable_encoder +from fastapi.responses import JSONResponse app = FastAPI() @@ -10,11 +12,17 @@ app = FastAPI() 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) +@app.exception_handler(RequestValidationError) +async def validation_exception_handler(request, exc): + return PlainTextResponse(str(exc), status_code=400) @app.get("/items/{item_id}") async def read_item(item_id: int): From 6acb820cfabb87c95370585cfbff1ef4efedb4d2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 19:46:32 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs_src/handling_errors/tutorial004.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/docs_src/handling_errors/tutorial004.py b/docs_src/handling_errors/tutorial004.py index b30a5001f..ee82c062c 100644 --- a/docs_src/handling_errors/tutorial004.py +++ b/docs_src/handling_errors/tutorial004.py @@ -1,9 +1,8 @@ -from fastapi import FastAPI, HTTPException, status, Request +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 -from fastapi.encoders import jsonable_encoder -from fastapi.responses import JSONResponse app = FastAPI() @@ -12,18 +11,25 @@ app = FastAPI() 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"})) + 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) + @app.exception_handler(RequestValidationError) async def validation_exception_handler(request, exc): return PlainTextResponse(str(exc), status_code=400) + @app.get("/items/{item_id}") async def read_item(item_id: int): if item_id == 3: From d9a734af943b3f72c2cb2d5a180377037254760c Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Wed, 5 Feb 2025 16:54:20 +0100 Subject: [PATCH 3/3] Remove duplicated code --- docs_src/handling_errors/tutorial004.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs_src/handling_errors/tutorial004.py b/docs_src/handling_errors/tutorial004.py index ee82c062c..d670fa5ba 100644 --- a/docs_src/handling_errors/tutorial004.py +++ b/docs_src/handling_errors/tutorial004.py @@ -25,11 +25,6 @@ async def validation_exception_handler(request, exc): return PlainTextResponse(str(exc), status_code=400) -@app.exception_handler(RequestValidationError) -async def validation_exception_handler(request, exc): - return PlainTextResponse(str(exc), status_code=400) - - @app.get("/items/{item_id}") async def read_item(item_id: int): if item_id == 3: