proxystore.store.exceptions¶
Exceptions for Stores.
StoreExistsError
¶
Bases: StoreError
Exception raised when a store with the same name already exists.
ProxyStoreFactoryError
¶
Bases: StoreError
Exception raised when a proxy was not created by a Store.
ProxyResolveMissingKeyError
¶
ProxyResolveMissingKeyError(
key: ConnectorKeyT,
store_type: type[Store[Any]],
store_name: str,
)
Bases: Exception
Exception raised when the key associated with a proxy is missing.
Init ProxyResolveMissingKeyError.
Parameters:
-
key
(ConnectorKeyT
) –Key associated with target object that could not be found in the store.
-
store_type
(type[Store[Any]]
) –Type of store that the key could not be found in.
-
store_name
(str
) –Name of store that the key could not be found in.