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
use std;
use std::error::Error;
use std::fmt;
use std::fmt::{Display, Formatter};
use std::sync::mpsc::SendError;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub enum NatureError {
    VerifyError(String),
    LogicalError(String),
    DaoDuplicated(String),
    SystemError(String),
    EnvironmentError(String),
}

impl Error for NatureError {}

impl Display for NatureError {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl From<serde_json::error::Error> for NatureError {
    fn from(e: serde_json::error::Error) -> Self {
        NatureError::VerifyError(e.to_string())
    }
}

impl From<std::num::ParseIntError> for NatureError {
    fn from(e: std::num::ParseIntError) -> Self {
        NatureError::VerifyError(e.to_string())
    }
}

impl<T> From<SendError<T>> for NatureError {
    fn from(err: SendError<T>) -> Self {
        NatureError::EnvironmentError(err.to_string())
    }
}

impl From<reqwest::Error> for NatureError {
    fn from(err: reqwest::Error) -> Self {
        NatureError::EnvironmentError(err.to_string())
    }
}

impl From<std::io::Error> for NatureError {
    fn from(err: std::io::Error) -> Self {
        NatureError::EnvironmentError(err.to_string())
    }
}