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