fail method

void fail(
  1. String msg
)

Implementation

void fail(String msg) {
  if ( ok ) {
    ok = false;
    err = msg;
  }
}