1use rst_common::with_errors::thiserror::{self, Error}; 2 3#[derive(Debug, Error)] 4pub enum VesselError { 5 #[error("rpc error: {0}")] 6 RpcError(String), 7}