Lines Matching refs:cause

35  * connection after it has been closed will cause an exception to be thrown.
37 * closed or on a result set after it has been closed will cause
52 * The <code>cause</code> is not initialized, and may subsequently be
72 * The <code>cause</code> is not initialized, and may subsequently be
92 * The <code>cause</code> is not initialized, and may subsequently be
108 * The <code>cause</code> is not initialized, and may subsequently be
120 * with a given <code>cause</code>.
124 * <code>cause==null</code> or to <code>cause.toString()</code> if
125 * <code>cause!=null</code>.
127 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
128 * the cause is non-existent or unknown.
130 public SQLWarning(Throwable cause) {
131 super(cause);
138 * <code>reason</code> and <code>cause</code>.
143 * @param cause the underlying reason for this <code>SQLWarning</code>
145 * may be null indicating the cause is non-existent or unknown.
147 public SQLWarning(String reason, Throwable cause) {
148 super(reason,cause);
155 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
160 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
161 * the cause is non-existent or unknown.
163 public SQLWarning(String reason, String SQLState, Throwable cause) {
164 super(reason,SQLState,cause);
173 * and <code>cause</code>.
178 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
179 * the cause is non-existent or unknown.
181 public SQLWarning(String reason, String SQLState, int vendorCode, Throwable cause) {
182 super(reason,SQLState,vendorCode,cause);