| 380 | |
| 381 | |
| 382 | class PrompterInterruptExceptionHandler(InterruptExceptionHandler): |
| 383 | EXCEPTIONS_TO_HANDLE = PrompterKeyboardInterrupt |
| 384 | |
| 385 | def _do_handle_exception(self, exception, stdout, stderr, **kwargs): |
| 386 | stderr.write(f'{exception}') |
| 387 | stderr.write("\n") |
| 388 | return self.RC |
| 389 | |
| 390 | |
| 391 | class GeneralExceptionHandler(FilteredExceptionHandler): |
no outgoing calls
no test coverage detected