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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
use std::boxed::Box;
use std::convert::Into;
use std::error;
use std::fmt;
use std::marker::{Send, Sync};
use rulinalg;
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
error: Box<dyn error::Error + Send + Sync>,
}
#[derive(Debug)]
pub enum ErrorKind {
InvalidParameters,
InvalidData,
InvalidState,
UntrainedModel,
LinearAlgebra
}
impl Error {
pub fn new<E>(kind: ErrorKind, error: E) -> Error
where E: Into<Box<dyn error::Error + Send + Sync>>
{
Error {
kind: kind,
error: error.into(),
}
}
pub fn new_untrained() -> Error {
Error::new(ErrorKind::UntrainedModel, "The model has not been trained.")
}
pub fn kind(&self) -> &ErrorKind {
&self.kind
}
}
impl From<rulinalg::error::Error> for Error {
fn from(e: rulinalg::error::Error) -> Error {
Error::new(ErrorKind::LinearAlgebra, <rulinalg::error::Error as error::Error>::description(&e))
}
}
impl error::Error for Error {
fn description(&self) -> &str {
self.error.description()
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.error.fmt(f)
}
}