| 52 | } |
| 53 | |
| 54 | class TimeoutError extends Error { |
| 55 | constructor(command: string, timeoutMs: number) { |
| 56 | super( |
| 57 | `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