mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
46 lines
1006 B
Rust
46 lines
1006 B
Rust
#[allow(unused)]
|
|
use crate::prelude::*;
|
|
|
|
use crate::Value;
|
|
use derive_new::new;
|
|
|
|
#[derive(Debug, Ord, PartialOrd, Eq, PartialEq, new)]
|
|
pub struct ShellError {
|
|
title: String,
|
|
error: Value,
|
|
}
|
|
|
|
impl ShellError {
|
|
crate fn string(title: impl Into<String>) -> ShellError {
|
|
ShellError::new(title.into(), Value::nothing())
|
|
}
|
|
|
|
crate fn copy_error(&self) -> ShellError {
|
|
ShellError {
|
|
title: self.title.clone(),
|
|
error: self.error.copy(),
|
|
}
|
|
}
|
|
|
|
crate fn description(&self) -> String {
|
|
self.title.clone()
|
|
}
|
|
}
|
|
|
|
impl std::fmt::Display for ShellError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
write!(f, "{}", &self.title)
|
|
}
|
|
}
|
|
|
|
impl std::error::Error for ShellError {}
|
|
|
|
impl std::convert::From<std::io::Error> for ShellError {
|
|
fn from(input: std::io::Error) -> ShellError {
|
|
ShellError {
|
|
title: format!("{}", input),
|
|
error: Value::nothing(),
|
|
}
|
|
}
|
|
}
|