(self, exception, stdout, stderr, **kwargs)
| 364 | RC = PARAM_VALIDATION_ERROR_RC |
| 365 | |
| 366 | def _do_handle_exception(self, exception, stdout, stderr, **kwargs): |
| 367 | stderr.write("\n") |
| 368 | stderr.write(f'usage: {USAGE}\n') |
| 369 | write_error(stderr, str(exception)) |
| 370 | return self.RC |
| 371 | |
| 372 | |
| 373 | class InterruptExceptionHandler(FilteredExceptionHandler): |
nothing calls this directly
no test coverage detected