RdfUnsupportedFeatureException constructor
- String message, {
- required String feature,
- required String format,
- Object? cause,
- SourceLocation? source,
Creates a new unsupported feature exception
Parameters:
message
: Required description of why the feature isn't supportedfeature
: Required identifier of the unsupported featureformat
: Required format being decodedcause
: Optional underlying cause of this exceptionsource
: Optional location information where the error occurred
Implementation
const RdfUnsupportedFeatureException(
super.message, {
required this.feature,
required super.format,
super.cause,
super.source,
});