UndefinedLocalException constructor

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

Implementation

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