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
#[cfg(feature = "serde")]
use serde_crate::{Deserialize, Serialize};
use std::fmt;

pub type Result<T> = std::result::Result<T, Error>;

#[cfg_attr(
    feature = "serde",
    derive(Serialize, Deserialize),
    serde(crate = "serde_crate")
)]
#[derive(Debug, Clone)]
pub enum Error {
    /// Indicate mis-configured hyper parameters
    InvalidParams(String),
    /// The input has not enough samples
    NotEnoughSamples,
    /// The input is singular
    IllConditioned,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::InvalidParams(msg) => write!(f, "Invalid hyper parameter: {}", msg),
            Self::NotEnoughSamples => write!(
                f,
                "Not enough samples, has to be larger than number of features"
            ),
            Self::IllConditioned => write!(f, "Ill conditioned data matrix"),
        }
    }
}

/// Derive the std error type
impl std::error::Error for Error {}