isException property

bool isException

Set if the evaluated code produces an unhandled exception.

Implementation

bool get isException => _wrapped.isException;
void isException=(bool v)

Implementation

set isException(bool v) {
  _wrapped.isException = v;
}