in app/common/src/main/java/com/googlecodesamples/cloud/jss/common/config/BasePublisherConfig.java [70:75]
public void setTotalTimeout(Integer totalTimeout) throws IllegalArgumentException {
if (totalTimeout < 0) {
throw new IllegalArgumentException(ERROR_MSG_NEGATIVE_TIMEOUT);
}
this.totalTimeout = totalTimeout;
}