Constructors Summary |
---|
public SSLException(String reason)Creates a new {@code SSLException} with the specified reason.
super(reason);
|
public SSLException(String message, Throwable cause)Creates a new {@code SSLException} with the specified message and cause.
super(message);
super.initCause(cause);
|
public SSLException(Throwable cause)Creates a new {@code SSLException} with the specified cause.
super(cause == null ? null : cause.toString());
super.initCause(cause);
|