(storageKey: string, key: string)
| 682 | |
| 683 | export class InvalidStorageDataFormatError extends LocalStorageCollectionError { |
| 684 | constructor(storageKey: string, key: string) { |
| 685 | super( |
| 686 | `[LocalStorageCollection] Invalid data format in storage key "${storageKey}" for key "${key}".`, |
| 687 | ) |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | export class InvalidStorageObjectFormatError extends LocalStorageCollectionError { |
nothing calls this directly
no outgoing calls
no test coverage detected