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
use ark_std::{fmt, io};
#[derive(Debug)]
pub enum SerializationError {
NotEnoughSpace,
InvalidData,
UnexpectedFlags,
IoError(io::Error),
}
impl ark_std::error::Error for SerializationError {}
impl From<io::Error> for SerializationError {
fn from(e: io::Error) -> SerializationError {
SerializationError::IoError(e)
}
}
impl fmt::Display for SerializationError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match self {
SerializationError::NotEnoughSpace => write!(
f,
"the last byte does not have enough space to encode the extra info bits"
),
SerializationError::InvalidData => write!(f, "the input buffer contained invalid data"),
SerializationError::UnexpectedFlags => write!(f, "the call expects empty flags"),
SerializationError::IoError(err) => write!(f, "I/O error: {:?}", err),
}
}
}