RdfCyclicGraphException constructor

const RdfCyclicGraphException(
  1. String message, {
  2. required String format,
  3. Object? cause,
  4. SourceLocation? source,
})

Creates a new cyclic graph exception

Parameters:

  • message: Required explanation of the cycle issue
  • format: Required target encoding format
  • cause: Optional underlying cause of this exception
  • source: Optional location information in the RDF graph

Implementation

const RdfCyclicGraphException(
  super.message, {
  required super.format,
  super.cause,
  super.source,
});