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

Class DeepnoteError

packages/blocks/src/errors.ts:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2 * Base error class for all Deepnote errors.
3 */
4export class DeepnoteError extends Error {
5 constructor(message: string, options?: ErrorOptions) {
6 super(message, options)
7 this.name = this.constructor.name
8 }
9}
10
11/**
12 * Generic parse failure, optionally associated with a file path.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected