in src/main/java/com/azure/servicebus/jms/jndi/JNDIStorable.java [29:34]
protected void checkRequiredProperty(String propertyName, String propertyValue) {
if (StringUtil.isNullOrEmpty(propertyValue)) {
throw new IllegalArgumentException(
String.format(REQUIRED_PROPERTY_MESSAGE_FORMAT, this.getClass().getName(), propertyName));
}
}