RdfUnsupportedEncoderFeatureException class

Exception thrown when the encoder cannot represent a feature in the target format

This exception indicates that the RDF graph contains structures or values that cannot be fully represented in the target encoder format due to limitations of that format or the implementation.

Unlike parser exceptions, these issues arise not from invalid input but from the limitations of the target format or the encoder implementation.

Examples include:

  • RDF constructs that don't have a direct representation in the target format
  • Complex graph patterns that the encoder doesn't support optimizing
  • Format-specific limitations (e.g., character set restrictions)
Inheritance

Constructors

RdfUnsupportedEncoderFeatureException(String message, {required String feature, required String format, Object? cause, SourceLocation? source})
Creates a new unsupported encoding feature exception
const

Properties

cause Object?
The original error that caused this exception, if any
finalinherited
feature String
Feature that is not supported
final
format String
Format being encoded to when the exception occurred
finalinherited
hashCode int
The hash code for this object.
no setterinherited
message String
Human-readable error message describing the issue
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
source SourceLocation?
Optional source information where the error occurred
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited