shacl_ast/ast/
shacl_error.rs

1use srdf::RDFNode;
2use thiserror::Error;
3
4#[derive(Debug, Error)]
5pub enum ShaclError {
6    #[error("NodeShape has an id which is not an IRI: {id}")]
7    NodeShapeIdNotIri { id: RDFNode },
8}