1use std::fmt::Debug; 2use thiserror::Error; 3 4/// Enum with all errors in this crate. 5#[derive(Error, Debug)] 6pub enum SuperclusterError { 7 #[error("No cluster with the specified id.")] 8 NoClusterFound, 9}