(
public readonly stdout: string,
public readonly stderr: string,
public readonly code: number,
public readonly interrupted: boolean,
)
| 50 | |
| 51 | export class ShellError extends Error { |
| 52 | constructor( |
| 53 | public readonly stdout: string, |
| 54 | public readonly stderr: string, |
| 55 | public readonly code: number, |
| 56 | public readonly interrupted: boolean, |
| 57 | ) { |
| 58 | super('Shell command failed') |
| 59 | this.name = 'ShellError' |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | export class TeleportOperationError extends Error { |
nothing calls this directly
no outgoing calls
no test coverage detected