RdfEncoderException constructor

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

Creates a new RDF encoder exception

Parameters:

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

Implementation

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