| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected