RdfValidationException constructor

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

Creates a new RDF validation exception

Parameters:

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

Implementation

const RdfValidationException(super.message, {super.cause, super.source});