ckb-error 0.108.0

Underlying error types used over ckb crates
Documentation
use crate::{
    impl_error_conversion_with_adaptor, impl_error_conversion_with_kind, Error, InternalError,
    InternalErrorKind,
};

impl_error_conversion_with_kind!(
    ckb_occupied_capacity::Error,
    InternalErrorKind::CapacityOverflow,
    InternalError
);
impl_error_conversion_with_adaptor!(ckb_occupied_capacity::Error, InternalError, Error);