Lines Matching refs:cause

45          * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
79 * The <code>cause</code> is not initialized, and may subsequently be
96 * The <code>cause</code> is not initialized, and may subsequently be
111 * <code>cause</code>.
115 * <code>cause==null</code> or to <code>cause.toString()</code> if
116 * <code>cause!=null</code>.
118 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
119 * the cause is non-existent or unknown.
122 public SQLDataException(Throwable cause) {
123 super(cause);
128 * <code>reason</code> and <code>cause</code>.
133 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
134 * the cause is non-existent or unknown.
137 public SQLDataException(String reason, Throwable cause) {
138 super(reason, cause);
143 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
148 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
149 * the cause is non-existent or unknown.
152 public SQLDataException(String reason, String SQLState, Throwable cause) {
153 super(reason, SQLState, cause);
159 * and <code>cause</code>.
164 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
165 * the cause is non-existent or unknown.
168 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) {
169 super(reason, SQLState, vendorCode, cause);