| 2 | |
| 3 | |
| 4 | class CliCommandInnerException(DltException): |
| 5 | def __init__(self, cmd: str, msg: str, inner_exc: Exception = None) -> None: |
| 6 | self.cmd = cmd |
| 7 | self.inner_exc = inner_exc |
| 8 | super().__init__(msg) |
| 9 | |
| 10 | |
| 11 | class CliCommandException(DltException): |
no outgoing calls
no test coverage detected