ParsingException constructor

ParsingException(
  1. String message,
  2. String source,
  3. int line,
  4. int column,
  5. int offset,
)

Implementation

ParsingException(
  this.message,
  this.source,
  this.line,
  this.column,
  this.offset,
);