Lines Matching refs:cause

61      * The <code>cause</code> is not initialized, and may subsequently be
87 * The <code>cause</code> is not initialized, and may subsequently be
112 * The <code>cause</code> is not initialized, and may subsequently be
134 * The <code>cause</code> is not initialized, and may subsequently be
152 * <code>cause</code>.
156 * <code>cause==null</code> or to <code>cause.toString()</code> if
157 * <code>cause!=null</code>.
159 * @param cause the underlying reason for this <code>SQLException</code>
161 * may be null indicating the cause is non-existent or unknown.
164 public SQLException(Throwable cause) {
165 super(cause);
176 * <code>reason</code> and <code>cause</code>.
181 * @param cause the underlying reason for this <code>SQLException</code>
183 * may be null indicating the cause is non-existent or unknown.
186 public SQLException(String reason, Throwable cause) {
187 super(reason,cause);
198 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
203 * @param cause the underlying reason for this <code>SQLException</code>
206 * the cause is non-existent or unknown.
209 public SQLException(String reason, String sqlState, Throwable cause) {
210 super(reason,cause);
225 * and <code>cause</code>.
230 * @param cause the underlying reason for this <code>SQLException</code>
232 * may be null indicating the cause is non-existent or unknown.
235 public SQLException(String reason, String sqlState, int vendorCode, Throwable cause) {
236 super(reason,cause);
306 * be used to iterate over each SQLException and its underlying cause
320 Throwable cause = firstException.getCause();
323 if(firstException != null || nextException != null || cause != null)
334 else if(cause != null){
335 throwable = cause;
336 cause = cause.getCause();
340 cause = nextException.getCause();