1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("Memory not exists")]
MemoryNotExists,
#[error("Metadata {0} not exists")]
MetadataNotExists(String),
#[error("Type {0} not found")]
TypeNotFound(String),
#[error("Type registry not found")]
RegistryNotFound,
#[error("Read {0} failed")]
ReadMetadataFailed(String),
#[error(transparent)]
Anyhow(#[from] anyhow::Error),
#[error(transparent)]
Codec(#[from] parity_scale_codec::Error),
#[error(transparent)]
FromHex(#[from] hex::FromHexError),
}
pub type Result<T> = std::result::Result<T, Error>;