()
| 38 | |
| 39 | export class SyncNotInitializedError extends QueryCollectionError { |
| 40 | constructor() { |
| 41 | super( |
| 42 | `Collection must be in 'ready' state for manual sync operations. Sync not initialized yet.`, |
| 43 | ) |
| 44 | this.name = `SyncNotInitializedError` |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | export class InvalidItemStructureError extends QueryCollectionError { |
nothing calls this directly
no outgoing calls
no test coverage detected