✏ Reword sentence about handling errors (#1993)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Sarmast Bilawal Khuhro 2022-03-17 21:24:34 +01:00 committed by GitHub
parent d5d6eebd40
commit aec2d26bac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -252,9 +252,7 @@ from starlette.exceptions import HTTPException as StarletteHTTPException
### Re-use **FastAPI**'s exception handlers ### 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**. 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`:
You can import and re-use the default exception handlers from `fastapi.exception_handlers`:
```Python hl_lines="2-5 15 21" ```Python hl_lines="2-5 15 21"
{!../../../docs_src/handling_errors/tutorial006.py!} {!../../../docs_src/handling_errors/tutorial006.py!}