(storageKey: string)
| 690 | |
| 691 | export class InvalidStorageObjectFormatError extends LocalStorageCollectionError { |
| 692 | constructor(storageKey: string) { |
| 693 | super( |
| 694 | `[LocalStorageCollection] Invalid data format in storage key "${storageKey}". Expected object format.`, |
| 695 | ) |
| 696 | } |
| 697 | } |
| 698 | |
| 699 | // Sync Cleanup Errors |
nothing calls this directly
no outgoing calls
no test coverage detected