(e)
| 70 | |
| 71 | @app.errorhandler(ParentException) |
| 72 | def parent_exception_handler(e): |
| 73 | assert isinstance(e, ParentException) |
| 74 | return "parent" |
| 75 | |
| 76 | @app.errorhandler(ChildExceptionRegistered) |
| 77 | def child_exception_handler(e): |
nothing calls this directly
no outgoing calls
no test coverage detected