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
//! rust-compression
//!
//! # Licensing
//! This Source Code is subject to the terms of the Mozilla Public License
//! version 2.0 (the "License"). You can obtain a copy of the License at
//! <http://mozilla.org/MPL/2.0/>.

use crate::core::fmt;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CompressionError {
    DataError,
    UnexpectedEof,
    Unexpected,
}

impl fmt::Display for CompressionError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.description_in())
    }
}

#[cfg(feature = "std")]
impl ::std::error::Error for CompressionError {
    fn description(&self) -> &str {
        self.description_in()
    }

    fn cause(&self) -> Option<&dyn (::std::error::Error)> {
        None
    }
}

impl CompressionError {
    fn description_in(&self) -> &str {
        match *self {
            CompressionError::DataError => "data integrity error in data",
            CompressionError::UnexpectedEof => "file ends unexpectedly",
            CompressionError::Unexpected => "unexpected error",
        }
    }
}