diff --git a/src/error.rs b/src/error.rs index 6b671f5..9ef363b 100644 --- a/src/error.rs +++ b/src/error.rs @@ -178,6 +178,9 @@ pub enum DecodeError { additional: usize, }, + /// An uncommon error occurred, see the inner text for more information + Other(&'static str), + /// An uncommon error occurred, see the inner text for more information #[cfg(feature = "alloc")] OtherString(alloc::string::String),