1#[derive(Debug, thiserror::Error)] 2pub enum QueryError { 3 #[error("parse error: {0}")] 4 Parse(String), 5 #[error("graph error: {0}")] 6 Graph(#[from] marsdb_graph::GraphError), 7 #[error("unbound variable: {0}")] 8 UnboundVariable(String), 9}