1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Appellation: error <module> Contrib: @FL03 */ #[derive(Debug, thiserror::Error)] pub enum MathematicalError { #[error("Dimension Error: {0}")] DimensionalError(&'static str), #[error("Infinity Error")] InfinityError, #[error("NaN Error")] NaNError, }