RdfDecoderException constructor

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

Creates a new RDF decoder exception

Parameters:

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

Implementation

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