1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
use std::{ error::Error, fmt };

#[derive(Debug)]
pub enum TransactionTypeParseError {
    InvalidType(String)
}

impl fmt::Display for TransactionTypeParseError {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> fmt::Result {
        match self {
            Self::InvalidType(s) => {
                let error_string = format!("{} is not a valid type", s);

                write!(f, "{}", error_string)
            }
        }
    }
}

impl Error for TransactionTypeParseError {}