RdfDecoderException constructor
- String message, {
- required String format,
- Object? cause,
- SourceLocation? source,
Creates a new RDF decoder exception
Parameters:
message
: Required description of the errorformat
: Required format being decodedcause
: Optional underlying cause of this exceptionsource
: Optional location information where the error occurred
Implementation
const RdfDecoderException(
super.message, {
required this.format,
super.cause,
super.source,
});