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