Lines Matching defs:cause
57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * permitted, and indicates that the cause is nonexistent or
67 public SSLException(String message, Throwable cause) {
69 initCause(cause);
73 * Creates a <code>SSLException</code> with the specified cause
74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
76 * <tt>cause</tt>).
78 * @param cause the cause (which is saved for later retrieval by the
80 * permitted, and indicates that the cause is nonexistent or
84 public SSLException(Throwable cause) {
85 super(cause == null ? null : cause.toString());
86 initCause(cause);