mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 11:32:21 +00:00
9 lines
147 B
Rust
9 lines
147 B
Rust
// Collection of custom errors
|
|
|
|
#[derive(Debug,PartialEq)]
|
|
pub enum ParameterError {
|
|
IntWrapping,
|
|
OutOfBounds,
|
|
InvalidInput(String),
|
|
}
|