()
| 778 | */ |
| 779 | export class SetWindowRequiresOrderByError extends QueryCompilationError { |
| 780 | constructor() { |
| 781 | super( |
| 782 | `setWindow() can only be called on collections with an ORDER BY clause. ` + |
| 783 | `Add .orderBy() to your query to enable window movement.`, |
| 784 | ) |
| 785 | } |
| 786 | } |
nothing calls this directly
no outgoing calls
no test coverage detected