shacl_ast/compiled/
compiled_shacl_error.rs1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum CompiledShaclError {
5 #[error("Conversion from IriRef failed")]
6 IriRefConversion,
7 #[error("Could not found the shape that it was been searched")]
8 ShapeNotFound,
9 #[error("Could not convert to Literal")]
10 LiteralConversion,
11}