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