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
use std;

/// General error type.
#[derive(Clone, Debug)]
pub enum Error {
    /// Error originating from Rust code.
    InternalError(&'static str),
    /// Error originating from FFI calls.
    ForeignError {
        api_name: &'static str,
        err_code: i32,
    },
}

impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            Error::InternalError(msg) => write!(f, "InternalError: {}", msg),
            Error::ForeignError { api_name, err_code } => write!(
                f,
                "ForeignError with code {} occured in `{}`.",
                err_code, api_name
            ),
        }
    }
}

impl std::error::Error for Error {}