Home | History | Annotate | Download | only in ssl

Lines Matching refs:cause

39      * Creates a new {@code SSLException} with the specified message and cause.
43 * @param cause
44 * the cause.
46 public SSLException(String message, Throwable cause) {
48 super.initCause(cause);
52 * Creates a new {@code SSLException} with the specified cause.
54 * @param cause
55 * the cause
57 public SSLException(Throwable cause) {
58 super(cause == null ? null : cause.toString());
59 super.initCause(cause);