preserves/implementations/rust/preserves-path/src/error.rs

18 lines
420 B
Rust

use std::io;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum CompilationError {
#[error(transparent)]
IoError(#[from] io::Error),
#[error("Cannot mix binary operators")]
MixedOperators,
#[error("Invalid step")]
InvalidStep,
#[error("Undefined schema definition name: {0}")]
UndefinedSchemaDefinitionName(String),
#[error(transparent)]
RegexError(#[from] regex::Error),
}