RdfCyclicGraphException constructor
- String message, {
- required String format,
- Object? cause,
- SourceLocation? source,
Creates a new cyclic graph exception
Parameters:
message
: Required explanation of the cycle issueformat
: Required target encoding formatcause
: Optional underlying cause of this exceptionsource
: Optional location information in the RDF graph
Implementation
const RdfCyclicGraphException(
super.message, {
required super.format,
super.cause,
super.source,
});