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
use std::boxed::Box;
use std::convert::Into;
use std::error;
use std::fmt;
use std::marker::{Send, Sync};
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
error: Box<error::Error + Send + Sync>,
}
#[derive(Debug, PartialEq)]
pub enum ErrorKind {
InvalidArg,
DecompFailure,
AlgebraFailure,
DivByZero,
ScalarConversionFailure,
InvalidPermutation
}
impl Error {
pub fn new<E>(kind: ErrorKind, error: E) -> Error
where E: Into<Box<error::Error + Send + Sync>>
{
Error {
kind: kind,
error: error.into(),
}
}
pub fn kind(&self) -> &ErrorKind {
&self.kind
}
}
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)
}
}