(message: string)
| 669 | // LocalStorage Collection Errors |
| 670 | export class LocalStorageCollectionError extends StorageError { |
| 671 | constructor(message: string) { |
| 672 | super(message) |
| 673 | this.name = `LocalStorageCollectionError` |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | export class StorageKeyRequiredError extends LocalStorageCollectionError { |
nothing calls this directly
no outgoing calls
no test coverage detected