summaryrefslogblamecommitdiff
path: root/src/error.rs
blob: f15c60aaca92312489b01a36a890ed52af917571 (plain) (tree)
1
2
3
4
5
6
7
8
                                          




                                
                         
               







                                                                        
                                               
                                                                     


         
use std::{fmt::Debug, num::ParseIntError};

pub enum CliError {
    Reqwest(reqwest::Error),
    Config(config::ConfigError),
    Serde(serde_json::Error),
    Parse(ParseIntError),
    WsResponse,
}

impl Debug for CliError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Reqwest(err) => { err.fmt(f) },
            Self::Config(err) => { err.fmt(f) },
            Self::Serde(err) => { err.fmt(f) },
            Self::Parse(err) => { err.fmt(f) },
            Self::WsResponse => { f.write_str("Error in Response") },
        }
    }
}