(self, exceptions, on_except_callback=None)
| 27 | func = None |
| 28 | |
| 29 | def __init__(self, exceptions, on_except_callback=None): |
| 30 | self.exceptions = exceptions |
| 31 | self.on_except_callback = on_except_callback |
| 32 | |
| 33 | def __call__(self, *args, **kwargs): |
| 34 | if self.func is None: |
nothing calls this directly
no outgoing calls
no test coverage detected