vos-error 0.3.2

Virtual Object Schema shared error types
Documentation
1
2
3
4
5
6
7
8
use crate::VosError;
use num::bigint::ParseBigIntError;

impl From<ParseBigIntError> for VosError {
    fn from(error: ParseBigIntError) -> Self {
        Self::parse_error(error.to_string())
    }
}