(message: string)
| 138 | // Collection Operation Errors |
| 139 | export class CollectionOperationError extends TanStackDBError { |
| 140 | constructor(message: string) { |
| 141 | super(message) |
| 142 | this.name = `CollectionOperationError` |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | export class UndefinedKeyError extends CollectionOperationError { |
nothing calls this directly
no outgoing calls
no test coverage detected