| 2 | * Base error class for all Deepnote errors. |
| 3 | */ |
| 4 | export 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. |
nothing calls this directly
no outgoing calls
no test coverage detected