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
use std::fmt;
use std::error::Error;
#[derive(Debug)]
pub struct ParsingError {
    desc: String,  
}
impl fmt::Display for ParsingError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.description().fmt(f)
    }
}
impl Error for ParsingError {
    fn description(&self) -> &str {
        &self.desc[..]
    }
    fn cause(&self) -> Option<&Error> {
        None
    }
}
impl ParsingError {
    pub fn new(desc: String) -> Self {
        ParsingError {
            desc: desc
        }
    }
}
pub type ParsingResult<T> = Result<T, ParsingError>;