public class

SSLException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ javax.net.ssl.SSLException
Known Direct Subclasses

Class Overview

Indicates some kind of error detected by an SSL subsystem. This class is the general class of exceptions produced by failed SSL-related operations.

Summary

Public Constructors
SSLException(String reason)
Constructs an exception reporting an error found by an SSL subsystem.
SSLException(String message, Throwable cause)
Creates a SSLException with the specified detail message and cause.
SSLException(Throwable cause)
Creates a SSLException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public SSLException (String reason)

Constructs an exception reporting an error found by an SSL subsystem.

Parameters
reason describes the problem.

public SSLException (String message, Throwable cause)

Creates a SSLException with the specified detail message and cause.

Parameters
message the detail message (which is saved for later retrieval by the getMessage() method).
cause the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

public SSLException (Throwable cause)

Creates a SSLException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters
cause the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)