1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum StateError { 5 #[error("Failed to create runtime: {0}")] 6 RuntimeError(#[source] std::io::Error), 7}