shacl_ast/ast/
shacl_error.rs

1
2
3
4
5
6
7
8
use srdf::RDFNode;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum ShaclError {
    #[error("NodeShape has an id which is not an IRI: {id}")]
    NodeShapeIdNotIri { id: RDFNode },
}