exocore_chain/pending/
error.rs

1use crate::operation;
2
3#[derive(Debug, thiserror::Error)]
4pub enum Error {
5    #[error("Operation related error: {0:?}")]
6    Operation(#[from] operation::Error),
7
8    #[error("Operation cannot be found")]
9    NotFound,
10}