diff options
Diffstat (limited to 'third_party/rust/goblin/src/error.rs')
-rw-r--r-- | third_party/rust/goblin/src/error.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/rust/goblin/src/error.rs b/third_party/rust/goblin/src/error.rs index e2dd517e15..0ec4e1e0c9 100644 --- a/third_party/rust/goblin/src/error.rs +++ b/third_party/rust/goblin/src/error.rs @@ -3,6 +3,7 @@ use alloc::string::String; use core::fmt; +use core::num::TryFromIntError; use core::result; #[cfg(feature = "std")] use std::{error, io}; @@ -42,6 +43,12 @@ impl From<io::Error> for Error { } } +impl From<TryFromIntError> for Error { + fn from(err: TryFromIntError) -> Error { + Error::Malformed(format!("Integer do not fit: {err}")) + } +} + impl From<scroll::Error> for Error { fn from(err: scroll::Error) -> Error { Error::Scroll(err) |