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