protected void setCustomUserAgent()

in src/main/java/com/azure/servicebus/jms/ServiceBusJmsConnectionFactory.java [370:376]


    protected void setCustomUserAgent(String customUserAgent) {
        if (customUserAgent != null && customUserAgent.length() > MAXCUSTOMUSERAGENTLENGTH) {
            throw new IllegalArgumentException("The length of the custom userAgent cannot exceed " + MAXCUSTOMUSERAGENTLENGTH);
        }
        
        this.customUserAgent = customUserAgent;
    }