1use thiserror::Error; 2 3#[derive(Error, Debug, PartialEq, Eq)] 4pub enum SdkError { 5 #[error("Invalid gas input")] 6 InvalidGas {}, 7}