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