graphgate_validation/
error.rs

1use parser::Pos;
2
3#[derive(Debug)]
4pub struct RuleError {
5    pub message: String,
6    pub locations: Vec<Pos>,
7}