RdfUnsupportedEncoderFeatureException constructor
const
RdfUnsupportedEncoderFeatureException(
- String message, {
- required String feature,
- required String format,
- Object? cause,
- SourceLocation? source,
Creates a new unsupported encoding feature exception
Parameters:
message: Required explanation of why the feature can't be encodedfeature: Required identifier of the unsupported featureformat: Required target encoding formatcause: Optional underlying cause of this exceptionsource: Optional location information in the RDF graph
Implementation
const RdfUnsupportedEncoderFeatureException(
super.message, {
required this.feature,
required super.format,
super.cause,
super.source,
});