| 52 | |
| 53 | |
| 54 | class ExecutableNotFoundError(Exception): |
| 55 | def __init__(self, executable_name): |
| 56 | super().__init__( |
| 57 | f'Could not find executable named "{executable_name}"' |
| 58 | ) |
| 59 | |
| 60 | |
| 61 | def get_renderer(help_output): |
no outgoing calls
no test coverage detected