RdfSyntaxException constructor

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

Creates a new RDF syntax exception

Parameters:

  • message: Required description of the syntax error
  • format: Required format being decoded
  • cause: Optional underlying cause of this exception
  • source: Optional location information where the error occurred

Implementation

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