1#[derive(Debug, Eq, PartialEq, thiserror::Error)] 2pub enum SamplingError { 3 #[error("Integer overflow: {0}")] 4 IntegerOverflow(String), 5}