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
use std::error::Error as StdError;
use std::fmt;
use modifier::Modifier;
use {Response};
pub use err::Error;
pub use hyper::Error as HttpError;
pub use hyper::error::Result as HttpResult;
#[derive(Debug)]
pub struct IronError {
pub error: Box<Error + Send>,
pub response: Response
}
impl IronError {
pub fn new<E: Error, M: Modifier<Response>>(e: E, m: M) -> IronError {
IronError {
error: Box::new(e),
response: Response::with(m)
}
}
}
impl fmt::Display for IronError {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt::Display::fmt(&*self.error, f)
}
}
impl StdError for IronError {
fn description(&self) -> &str {
self.error.description()
}
fn cause(&self) -> Option<&StdError> {
self.error.cause()
}
}