(self, exception, stdout, stderr, **kwargs)
| 132 | |
| 133 | class BaseExceptionHandler: |
| 134 | def handle_exception(self, exception, stdout, stderr, **kwargs): |
| 135 | raise NotImplementedError('handle_exception') |
| 136 | |
| 137 | |
| 138 | class FilteredExceptionHandler(BaseExceptionHandler): |
no outgoing calls