exocore-chain 0.1.23

Storage of Exocore (Distributed applications framework)
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::operation;

#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("Operation related error: {0:?}")]
    Operation(#[from] operation::Error),

    #[error("Operation cannot be found")]
    NotFound,
}