(request)
| 98 | |
| 99 | @app.route("/abort/message") |
| 100 | def handler_abort_message(request): |
| 101 | raise SanicException(message="Custom Message", status_code=500) |
| 102 | |
| 103 | @app.route("/divide_by_zero") |
| 104 | def handle_unhandled_exception(request): |
nothing calls this directly
no test coverage detected
searching dependent graphs…