vos_error/for_3rd/
for_num.rs

1use crate::VosError;
2use num::bigint::ParseBigIntError;
3
4impl From<ParseBigIntError> for VosError {
5    fn from(error: ParseBigIntError) -> Self {
6        Self::parse_error(error.to_string())
7    }
8}