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

Method constructor

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

Source from the content-addressed store, hash-verified

244
245export class DeleteKeyNotFoundError extends CollectionOperationError {
246 constructor(key: string | number) {
247 super(
248 `Collection.delete was called with key '${key}' but there is no item in the collection with this key`,
249 )
250 }
251}
252
253// Collection Handler Errors

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected