RdfUnsupportedEncoderFeatureException constructor

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

Creates a new unsupported encoding feature exception

Parameters:

  • message: Required explanation of why the feature can't be encoded
  • feature: Required identifier of the unsupported feature
  • format: Required target encoding format
  • cause: Optional underlying cause of this exception
  • source: Optional location information in the RDF graph

Implementation

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