(message: string)
| 710 | // Query Optimizer Errors |
| 711 | export class QueryOptimizerError extends TanStackDBError { |
| 712 | constructor(message: string) { |
| 713 | super(message) |
| 714 | this.name = `QueryOptimizerError` |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | export class CannotCombineEmptyExpressionListError extends QueryOptimizerError { |
nothing calls this directly
no outgoing calls
no test coverage detected