/*
appellation: error <module>
authors: @FL03
*/
//! this module defines the various errors encountered by storage containers.
/// a type alias for a [`Result`] equipped to handle the [`StoreError`] type
pub type StoreResult<T> = Result;
/// the [`StoreError`] type enumerates the possible errors that can occur in the store module.
/// the [`EntryError`] type enumerates the possible errors that can occur when accessing
/// entries in the key-value store.