aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/asset/chain/error.rs
blob: cc22bdc218d3aefda95fead94d77b2ebff034ffc (plain) (blame)
1
2
3
4
5
6
7
8
#[derive(thiserror::Error, Debug)]
pub enum ChainProcessError {
    #[error("Other error: {0}")]
    Other(String),

    #[error("IO error: {0}")]
    IO(#[from] std::io::Error),
}