(self, exceptions, on_except_callback=None)
| 15 | func = None |
| 16 | |
| 17 | def __init__(self, exceptions, on_except_callback=None): |
| 18 | self.exceptions = exceptions |
| 19 | self.on_except_callback = on_except_callback |
| 20 | |
| 21 | def __call__(self, *args, **kwargs): |
| 22 | if self.func is None: |
nothing calls this directly
no outgoing calls
no test coverage detected