javax.net.ssl

Class SSLException

public class SSLException extends IOException

The superclass of all possible SSL exceptions. Usually, a specific exception is thrown instead of this exception.

Since: 1.4

Constructor Summary
SSLException(String message)
Create a new instance with a descriptive error message.
SSLException(String message, Throwable cause)
Create a new instance with a descriptive error message and a cause.
SSLException(Throwable cause)
Create a new instance with a cause.

Constructor Detail

SSLException

public SSLException(String message)
Create a new instance with a descriptive error message.

Parameters: message the descriptive error message

SSLException

public SSLException(String message, Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters: message the descriptive error message cause the cause

Since: 1.5

SSLException

public SSLException(Throwable cause)
Create a new instance with a cause.

Parameters: cause the cause

Since: 1.5