lighthouse-pulse/lighthouse/utils/errors.rs
2018-09-22 21:59:44 +10:00

9 lines
147 B
Rust

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