UndefinedIdentifierException constructor

UndefinedIdentifierException([
  1. String? ident,
  2. Exception? inner
])

Implementation

UndefinedIdentifierException([String? ident, Exception? inner])
    : super(
          ident != null
              ? "Undefined Identifier: '$ident' is unknown in this context"
              : "Undefined Identifier",
          inner);