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