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

/// Error from the `regex` validator.
#[derive(Debug, Clone)]
pub struct RegexError;

impl Display for RegexError {
    #[inline]
    fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
        f.write_str("invalid format")
    }
}

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