(e)
| 58 | return "boom" |
| 59 | |
| 60 | def my_function_exception_handler(e): |
| 61 | assert isinstance(e, MyFunctionException) |
| 62 | return "bam" |
| 63 | |
| 64 | blue.register_error_handler(MyFunctionException, my_function_exception_handler) |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected