BaseIriRequiredException constructor
- required String relativeUri,
Creates a new base IRI required exception.
The relativeUri
parameter should contain the relative IRI that
triggered this exception.
Implementation
const BaseIriRequiredException({required this.relativeUri})
: super(
'Base IRI is required to resolve relative IRI: $relativeUri',
format: 'iri',
);