37 lines
841 B
Rust
37 lines
841 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ActionError {
|
|
#[error("Action error: {0}")]
|
|
GeneralError(String),
|
|
|
|
#[error("Argument error: {0}")]
|
|
ArgumentError(String),
|
|
|
|
#[error("Set operation error: {0}")]
|
|
SetError(String),
|
|
}
|
|
|
|
impl From<std::io::Error> for ActionError {
|
|
fn from(err: std::io::Error) -> Self {
|
|
ActionError::GeneralError(format!("IO error: {}", err))
|
|
}
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ArgumentError {
|
|
#[error("Argument error: {0}")]
|
|
GeneralError(String),
|
|
|
|
#[error("Argument error: {0}")]
|
|
ArgumentError(String),
|
|
|
|
#[error("Set operation error: {0}")]
|
|
SetError(String),
|
|
}
|
|
|
|
impl From<std::io::Error> for ArgumentError {
|
|
fn from(err: std::io::Error) -> Self {
|
|
ArgumentError::GeneralError(format!("IO error: {}", err))
|
|
}
|
|
} |