Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/en/docs/tutorial/handling-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,7 @@ from starlette.exceptions import HTTPException as StarletteHTTPException

### Re-use **FastAPI**'s exception handlers

You could also just want to use the exception somehow, but then use the same default exception handlers from **FastAPI**.

You can import and re-use the default exception handlers from `fastapi.exception_handlers`:
If you want to use the exception along with the same default exception handlers from **FastAPI**, You can import and re-use the default exception handlers from `fastapi.exception_handlers`:

```Python hl_lines="2-5 15 21"
{!../../../docs_src/handling_errors/tutorial006.py!}
Expand Down