(message: string)
| 437 | // Query Compilation Errors |
| 438 | export class QueryCompilationError extends TanStackDBError { |
| 439 | constructor(message: string) { |
| 440 | super(message) |
| 441 | this.name = `QueryCompilationError` |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | export class UnsafeAliasPathError extends QueryCompilationError { |
nothing calls this directly
no outgoing calls
no test coverage detected