| 130 | } |
| 131 | |
| 132 | class TimeoutError extends Error { |
| 133 | constructor(command: string, timeoutMs: number) { |
| 134 | super( |
| 135 | `Command timed out after ${timeoutMs / 1000}s: ${command.slice(0, 100)}${command.length > 100 ? '...' : ''}`, |
nothing calls this directly
no outgoing calls
no test coverage detected