org.schwering.irc.lib.ssl
Class SSLNotSupportedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.schwering.irc.lib.ssl.SSLNotSupportedException
All Implemented Interfaces:
Serializable

public class SSLNotSupportedException
extends RuntimeException

Indicates that SSL is not supported. However, a NoClassDefFoundError is probably thrown before a SSLNotSupportedException can be thrown, because the javax.net.SocketFactory will not be found (among others).

Since:
1.10
See Also:
SSLIRCConnection, Serialized Form

Constructor Summary
SSLNotSupportedException()
          Empty exception.
SSLNotSupportedException(String s)
          Creates an exception with description.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SSLNotSupportedException

public SSLNotSupportedException()
Empty exception.


SSLNotSupportedException

public SSLNotSupportedException(String s)
Creates an exception with description.

Parameters:
s - The description.