RdfShapeValidationException constructor
- String message, {
- required String shapeId,
- required String targetNode,
- Object? cause,
- SourceLocation? source,
Creates a new shape validation exception
Parameters:
message
: Required description of the validation failureshapeId
: Required identifier of the violated shapetargetNode
: Required identifier of the non-conforming nodecause
: Optional underlying cause of this exceptionsource
: Optional location information where the error was detected
Implementation
const RdfShapeValidationException(
super.message, {
required this.shapeId,
required this.targetNode,
super.cause,
super.source,
});