vos_error/for_3rd/
for_big_decimal.rs

1use crate::VosError;
2use bigdecimal::ParseBigDecimalError;
3
4impl From<ParseBigDecimalError> for VosError {
5    fn from(error: ParseBigDecimalError) -> Self {
6        // let p = error.position as u32;
7        Self::parse_error(error.to_string())
8    }
9}