shacl_ast/compiled/
compiled_shacl_error.rs

1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum CompiledShaclError {
    #[error("Conversion from IriRef failed")]
    IriRefConversion,
    #[error("Could not found the shape that it was been searched")]
    ShapeNotFound,
    #[error("Could not convert to Literal")]
    LiteralConversion,
}