(key: string | number)
| 222 | |
| 223 | export 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 | |
| 231 | export class KeyUpdateNotAllowedError extends CollectionOperationError { |
nothing calls this directly
no outgoing calls
no test coverage detected