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
use std::error;
use std::fmt::{self, Display};

/// A connection string error.
#[derive(Debug)]
pub struct Error {
    msg: String,
}

/// Create a new Error.
impl Error {
    /// Create a new instance of `Error`.
    pub fn new(msg: &str) -> Self {
        Self {
            msg: msg.to_owned(),
        }
    }
}

impl From<std::num::ParseIntError> for Error {
    fn from(err: std::num::ParseIntError) -> Self {
        Self {
            msg: format!("{}", err),
        }
    }
}

impl Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Conversion error: {}", self.msg)
    }
}

impl error::Error for Error {}