(e)
| 192 | |
| 193 | @app.errorhandler(Forbidden) |
| 194 | def catchall_forbidden_handler(e): |
| 195 | assert isinstance(e, Forbidden) |
| 196 | return "forbidden" |
| 197 | |
| 198 | @app.route("/forbidden") |
| 199 | def forbidden(): |
nothing calls this directly
no outgoing calls
no test coverage detected