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
//! Errors

/// General error class for any errors possible from emcee
#[derive(Debug)]
pub enum EmceeError {
    /// Encapsulates if invalid parameters are given when trying to create an EnsembleSampler
    InvalidInputs(String),

    /// General message type for ad-hoc messages
    Msg(String),
}

impl ::std::fmt::Display for EmceeError {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "Emcee Error")
    }
}

impl<'a> ::std::convert::From<&'a str> for EmceeError {
    fn from(msg: &'a str) -> EmceeError {
        EmceeError::Msg(msg.to_string())
    }
}

/// Result alias which wraps [`EmceeError`][emcee-error]
///
/// [emcee-error]: https://example.com
pub type Result<T> = ::std::result::Result<T, EmceeError>;

impl ::std::error::Error for EmceeError {
    fn description(&self) -> &str {
        use EmceeError::*;

        let details = match *self {
            InvalidInputs(ref msg) |
            Msg(ref msg) => msg,
        };

        details.as_str()
    }

    fn cause(&self) -> Option<&::std::error::Error> {
        // We are not wrapping other error types, and our types do not have an
        // underlying cause beyond the description passed via the creation
        None
    }
}