(message: string)
| 3 | // Query Collection Errors |
| 4 | export class QueryCollectionError extends TanStackDBError { |
| 5 | constructor(message: string) { |
| 6 | super(message) |
| 7 | this.name = `QueryCollectionError` |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | export class QueryKeyRequiredError extends QueryCollectionError { |
nothing calls this directly
no outgoing calls
no test coverage detected