PROTON-1565: don't throw if the anonymous ciphers are not supported
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslEngineFacadeFactory.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslEngineFacadeFactory.java
index e82e1bb..309e0dc 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslEngineFacadeFactory.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslEngineFacadeFactory.java
@@ -414,15 +414,7 @@
             }
         }
 
-        if (addedAnonymousCipherSuites == 0)
-        {
-            throw new TransportException
-                ("None of " + anonymousCipherSuites
-                 + " anonymous cipher suites are within the supported list "
-                 + supportedSuites);
-        }
-
-        if(_logger.isLoggable(Level.FINE))
+        if (addedAnonymousCipherSuites > 0 && _logger.isLoggable(Level.FINE))
         {
             _logger.fine("There are now " + newEnabled.size()
                     + " cipher suites enabled (previously " + currentEnabled.size()