org.schwering.irc.lib.ssl
Class SSLNotSupportedException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.schwering.irc.lib.ssl.SSLNotSupportedException
All Implemented Interfaces:
java.io.Serializable

public class SSLNotSupportedException
extends java.lang.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
Version:
1.00
Author:
Christoph Schwering <schwering@gmail.com>
See Also:
SSLIRCConnection, Serialized Form

Constructor Summary
SSLNotSupportedException()
          Empty exception.
SSLNotSupportedException(java.lang.String s)
          Creates an exception with description.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SSLNotSupportedException

public SSLNotSupportedException()
Empty exception.


SSLNotSupportedException

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

Parameters:
s - The description.