KdlVersionMismatchException constructor

KdlVersionMismatchException(
  1. int version,
  2. int parserVersion
)

Construct a new KDL Version Mismatch Exception for the given document and parser versions

Implementation

KdlVersionMismatchException(this.version, this.parserVersion)
    : super("Version mismatch, document specified v$version, "
          "but this is a v$parserVersion parser");