1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum RuntimeError { 5 #[error("engine error: {0}")] 6 Engine(#[from] anyhow::Error), 7}