(key: string | number)
| 54 | |
| 55 | export class ItemNotFoundError extends QueryCollectionError { |
| 56 | constructor(key: string | number) { |
| 57 | super(`Item with key '${key}' does not exist.`) |
| 58 | this.name = `ItemNotFoundError` |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | export class DuplicateKeyInBatchError extends QueryCollectionError { |
nothing calls this directly
no outgoing calls
no test coverage detected