Team LiB
Previous Section Next Section

SSLExceptionjavax.net.ssl

Java 1.4serializable checked

Signals an SSL-related problem. This class serves as the common superclass of more specific SSL exception subclasses.

Figure 18-6. javax.net.ssl.SSLException


public class SSLException extends java.io.IOException {
// Public Constructors
5.0  public SSLException(Throwable cause);  
     public SSLException(String reason);  
5.0  public SSLException(String message, Throwable cause);  
}

Subclasses

SSLHandshakeException, SSLKeyException, SSLPeerUnverifiedException, SSLProtocolException

Thrown By

SSLEngine.{beginHandshake( ), closeInbound( ), unwrap( ), wrap( )}

    Team LiB
    Previous Section Next Section