1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use std::fmt::{Display, Error, Formatter};
use std::error;
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum ArmorlibError {
UnknownProcessingError(String),
ParseError(String),
MissingPreprocessor(String),
MissingMetadata(String),
ReadFileError(String),
}
impl Display for ArmorlibError {
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
let message: String = match self {
&ArmorlibError::UnknownProcessingError(ref msg) => {
format!("an unknown processing error occured: {}", msg)
}
&ArmorlibError::ParseError(ref msg) => {
format!("an error occured while parsing: {}", msg)
}
&ArmorlibError::MissingPreprocessor(ref msg) => {
format!("unable to find the preprocessor `{}`", msg)
}
&ArmorlibError::MissingMetadata(ref msg) => {
format!("unable to find the metadata at path `{}`", msg)
}
&ArmorlibError::ReadFileError(ref msg) => {
format!("unable to read the file at path `{}`", msg)
}
};
write!(f, "{}", message.as_str())?;
Ok(())
}
}
impl error::Error for ArmorlibError {
fn description(&self) -> &str {
match self {
&ArmorlibError::UnknownProcessingError(_) => "an unknown processing error occured",
&ArmorlibError::ParseError(_) => "an error occured while parsing data",
&ArmorlibError::MissingPreprocessor(_) => "unable to find the preprocessor",
&ArmorlibError::MissingMetadata(_) => "unable to find the metadata",
&ArmorlibError::ReadFileError(_) => "unable to read the file",
}
}
}