iri_string/normalize/
error.rs

1//! Normalization and resolution error.
2
3use core::fmt;
4
5/// IRI normalization and resolution error.
6///
7/// For detail about resolution failure, see [the module documentation][`crate::resolve`].
8#[derive(Debug, Clone)]
9pub struct Error(());
10
11impl Error {
12    /// Creates a new error.
13    pub(crate) fn new() -> Self {
14        Self(())
15    }
16}
17
18impl fmt::Display for Error {
19    #[inline]
20    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
21        f.write_str("unresolvable IRI")
22    }
23}
24
25#[cfg(feature = "std")]
26impl std::error::Error for Error {}