ParserException constructor

const ParserException(
  1. String message,
  2. int line,
  3. int column
)

Create an instance of ParserException.

The arguments must not be null. See message for details on the expected syntax of the error description.

Implementation

const ParserException(this.message, this.line, this.column);