(operation: string, originalError: string)
| 660 | |
| 661 | export class SerializationError extends StorageError { |
| 662 | constructor(operation: string, originalError: string) { |
| 663 | super( |
| 664 | `Cannot ${operation} item because it cannot be JSON serialized: ${originalError}`, |
| 665 | ) |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | // LocalStorage Collection Errors |
nothing calls this directly
no outgoing calls
no test coverage detected