(functionName: string)
| 548 | |
| 549 | export class UnknownFunctionError extends QueryCompilationError { |
| 550 | constructor(functionName: string) { |
| 551 | super(`Unknown function: ${functionName}`) |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | export class JoinCollectionNotFoundError extends QueryCompilationError { |
nothing calls this directly
no outgoing calls
no test coverage detected