soil_runtime_utilities/
error.rs1pub type Result<T> = std::result::Result<T, Error>;
11
12#[derive(Debug, thiserror::Error)]
14#[allow(missing_docs)]
15pub enum Error {
16 #[error("Scale codec error: {0}")]
17 ScaleCodec(#[from] codec::Error),
18 #[error("Opaque metadata not found")]
19 OpaqueMetadataNotFound,
20 #[error("Stable metadata version not found")]
21 StableMetadataVersionNotFound,
22 #[error("WASM executor error: {0}")]
23 Executor(#[from] soil_client::executor::common::error::Error),
24}