RdfUnsupportedFeatureException constructor

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

Creates a new unsupported feature exception

Parameters:

  • message: Required description of why the feature isn't supported
  • feature: Required identifier of the unsupported feature
  • format: Required format being decoded
  • cause: Optional underlying cause of this exception
  • source: Optional location information where the error occurred

Implementation

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