()
| 754 | */ |
| 755 | export class AggregateNotSupportedError extends QueryCompilationError { |
| 756 | constructor() { |
| 757 | super( |
| 758 | `Aggregate expressions are not supported in this context. Use GROUP BY clause for aggregates.`, |
| 759 | ) |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected