1
2
3
4
5
6
use crate::tokenizer::Location;

pub struct GQLError {
    pub message: String,
    pub location: Location,
}