RdfException constructor

const RdfException(
  1. String message, {
  2. Object? cause,
  3. SourceLocation? source,
})

Creates a new RDF exception

Parameters:

  • message: Required description of the error
  • cause: Optional underlying cause of this exception
  • source: Optional location information where the error occurred

Implementation

const RdfException(this.message, {this.cause, this.source});