1 2 3 4 5 6 7
#[derive(Debug, Clone, PartialEq, thiserror::Error)] pub enum CoreError { #[error("division by zero")] DivisionByZero, #[error("{0}")] Other(String), }