in app/common/src/main/java/com/googlecodesamples/cloud/jss/common/config/BaseConfig.java [34:39]
public void setExecutorThreads(Integer executorThreads) throws IllegalArgumentException {
if (executorThreads <= 0) {
throw new IllegalArgumentException(LogMessage.ERROR_NEGATIVE_THREADS);
}
this.executorThreads = executorThreads;
}