MCPcopy Create free account
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/errors.ts:224–228  ·  view source on GitHub ↗
(key: string | number)

Source from the content-addressed store, hash-verified

222
223export class UpdateKeyNotFoundError extends CollectionOperationError {
224 constructor(key: string | number) {
225 super(
226 `The key "${key}" was passed to update but an object for this key was not found in the collection`,
227 )
228 }
229}
230
231export class KeyUpdateNotAllowedError extends CollectionOperationError {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected