(message: string)
| 9 | // Base error classes |
| 10 | export class NonRetriableError extends TanStackDBError { |
| 11 | constructor(message: string) { |
| 12 | super(message) |
| 13 | this.name = `NonRetriableError` |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | // Schema validation error (exported from index for backward compatibility) |
nothing calls this directly
no outgoing calls
no test coverage detected