(key: string | number)
| 244 | |
| 245 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected