(message: string)
| 1 | // Root error class for all TanStack DB errors |
| 2 | export class TanStackDBError extends Error { |
| 3 | constructor(message: string) { |
| 4 | super(message) |
| 5 | this.name = `TanStackDBError` |
| 6 | } |
| 7 | } |
| 8 | |
| 9 | // Base error classes |
nothing calls this directly
no outgoing calls
no test coverage detected