| 28 | * Custom error to signal that output has been handled and process should exit. |
| 29 | */ |
| 30 | class DagHandledError extends Error { |
| 31 | readonly exitCode: number |
| 32 | constructor(exitCode: number) { |
| 33 | super('DAG output handled') |
nothing calls this directly
no outgoing calls
no test coverage detected