getValueOrException method

T getValueOrException()

Implementation

T getValueOrException() {
  if (errorCode == ErrorCode.success) {
    return value;
  }
  throw AskarErrorCodeException(errorCode);
}