lighthouse-pulse/lighthouse/utils/errors.rs

9 lines
147 B
Rust
Raw Normal View History

// Collection of custom errors
#[derive(Debug,PartialEq)]
pub enum ParameterError {
IntWrapping,
OutOfBounds,
InvalidInput(String),
}