class StorageConnectionFailed extends Error Error thrown when a storage connection cannot be established. Examples Handling connection failures with retry import { Storage, createInMemory, StorageConnectionFailed } from "@anabranch/storage"; const storage = await Storage.connect(createInMemory()) .retry({ attempts: 3, delay: 1000 }) .timeout(30_000) .try(); Constructors StorageConnectionFailed(message: string,cause?: unknown) Properties name: string