1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use core::fmt::{self, Display, Formatter};
#[cfg(feature = "std")]
use std::error::Error;

/// 將數值轉成中文數字時發生的錯誤。
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum NumberToChineseError {
    Overflow,
    Underflow,
}

impl Display for NumberToChineseError {
    #[inline]
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), fmt::Error> {
        match self {
            NumberToChineseError::Overflow => f.write_str("number is too large"),
            NumberToChineseError::Underflow => f.write_str("number is too small"),
        }
    }
}

#[cfg(feature = "std")]
impl Error for NumberToChineseError {}