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

Class DagError

packages/reactivity/src/dag.ts:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { buildDagFromBlocks } from './dag-builder'
5
6export class DagError extends Error {
7 constructor(message: string) {
8 super(message)
9 this.name = 'DagError'
10 }
11}
12
13export type DownstreamBlocksStatus = 'success' | 'missing-deps' | 'fatal'
14export type UpstreamBlocksStatus = 'success' | 'missing-deps' | 'fatal'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected