getResult method

String getResult()

Implementation

String getResult() {
  if (!isValid()) {
    throw new ResponseInvalidException();
  } else {
    return _result;
  }
}