in app/common/src/main/java/com/googlecodesamples/cloud/jss/common/config/BaseConfig.java [52:56]
protected void checkEmptyName(String queueName) throws IllegalArgumentException {
if (!StringUtils.hasText(queueName)) {
throw new IllegalArgumentException(LogMessage.ERROR_EMPTY_NAME);
}
}