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

/// Standard Error type for this crate.
#[derive(Debug, PartialEq)]
pub enum Error {
    InvalidCurrency,
    InvalidAmount,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            Error::InvalidCurrency => write!(f, "Currency was not valid"),
            Error::InvalidAmount => write!(f, "Amount is not a number"),
        }
    }
}

impl error::Error for Error {
    fn description(&self) -> &str {
        match *self {
            Error::InvalidCurrency => "Currency was not valid",
            Error::InvalidAmount => "Amount is not a number",
        }
    }
}