MCPcopy Create free account
hub / github.com/deepnote/deepnote / DagHandledError

Class DagHandledError

packages/cli/src/commands/dag.ts:30–37  ·  view source on GitHub ↗

* Custom error to signal that output has been handled and process should exit.

Source from the content-addressed store, hash-verified

28 * Custom error to signal that output has been handled and process should exit.
29 */
30class DagHandledError extends Error {
31 readonly exitCode: number
32 constructor(exitCode: number) {
33 super('DAG output handled')
34 this.name = 'DagHandledError'
35 this.exitCode = exitCode
36 }
37}
38
39/**
40 * Creates the dag show action - displays the dependency graph.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected