(request: Request, exc: HTTPException)
| 193 | |
| 194 | @app.exception_handler(500) |
| 195 | async def handle_500(request: Request, exc: HTTPException): |
| 196 | return TemplateResponse( |
| 197 | request=request, name="error/500.html", status_code=500, context={} |
| 198 | ) |
nothing calls this directly
no test coverage detected