Exceptions raised from this package's CLI commands.
| 6 | |
| 7 | |
| 8 | class MemrayCommandError(MemrayError): |
| 9 | """Exceptions raised from this package's CLI commands.""" |
| 10 | |
| 11 | def __init__(self, *args: Any, exit_code: int) -> None: |
| 12 | super().__init__(*args) |
| 13 | self.exit_code = exit_code |
no outgoing calls
no test coverage detected
searching dependent graphs…