Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✏ Reword sentence about handling errors #1993

Merged
merged 2 commits into from Mar 17, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/en/docs/tutorial/handling-errors.md
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 the **FastAPI**, You can import and re-use the default exception handlers from `fastapi.exception_handlers`:
tiangolo marked this conversation as resolved.
Show resolved Hide resolved

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