RdfInvalidIriException constructor
- String message, {
- required String iri,
- required String format,
- Object? cause,
- SourceLocation? source,
Creates a new invalid IRI exception
Parameters:
message
: Required description of why the IRI is invalidiri
: Required string representation of the invalid IRIformat
: Required format being decodedcause
: Optional underlying cause of this exceptionsource
: Optional location information where the error occurred
Implementation
const RdfInvalidIriException(
super.message, {
required this.iri,
required super.format,
super.cause,
super.source,
});