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
use std::error::Error;
use std::fmt;
#[derive(Debug)]
pub enum LionessError {
BlockSizeError,
}
impl fmt::Display for LionessError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use self::LionessError::*;
match *self {
BlockSizeError => write!(f, "Lioness block size must exceed 32 bytes."),
}
}
}
impl Error for LionessError {
fn description(&self) -> &str {
"I'm a Lioness error."
}
fn cause(&self) -> Option<&Error> {
use self::LionessError::*;
match *self {
BlockSizeError => None,
}
}
}