1use thiserror::Error; 2 3#[derive(Clone, Debug, Error)] 4pub enum Error { 5 #[error("the address store reached the maximum capacity")] 6 MaxCapacityReached, 7} 8 9pub type Result<T> = std::result::Result<T, Error>;