1
2
3
4
5
6
7
8
9
#[derive(Debug)]
pub enum QueryGraphError {
    /// Error expressing an error in constructing the query graph.
    /// Usually hints at a logic error, not a user input error.
    InvarianceViolation(String),

    /// Error expressing an invalid transformation done on graph nodes.
    InvalidNodeTransformation { from: String, to: String },
}