(app: Quart, error: Exception)
| 402 | |
| 403 | |
| 404 | async def _handle_exception(app: Quart, error: Exception) -> Response: |
| 405 | if not app.testing and app.config["PROPAGATE_EXCEPTIONS"]: |
| 406 | return await traceback_response(error) |
| 407 | else: |
| 408 | raise error |
searching dependent graphs…