(message: string)
| 617 | // GROUP BY and Aggregation Errors |
| 618 | export class GroupByError extends TanStackDBError { |
| 619 | constructor(message: string) { |
| 620 | super(message) |
| 621 | this.name = `GroupByError` |
| 622 | } |
| 623 | } |
| 624 | |
| 625 | export class NonAggregateExpressionNotInGroupByError extends GroupByError { |
nothing calls this directly
no outgoing calls
no test coverage detected