(message: string)
| 653 | // Storage Errors |
| 654 | export class StorageError extends TanStackDBError { |
| 655 | constructor(message: string) { |
| 656 | super(message) |
| 657 | this.name = `StorageError` |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | export class SerializationError extends StorageError { |
nothing calls this directly
no outgoing calls
no test coverage detected