Lines Matching refs:cause

30  * of the same operation would fail unless the cause of the <code>SQLException</code>
43 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @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
117 * the cause is non-existent or unknown.
120 public SQLNonTransientException(Throwable cause) {
121 super(cause);
127 * <code>reason</code> and <code>cause</code>.
132 * @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
133 * the cause is non-existent or unknown.
136 public SQLNonTransientException(String reason, Throwable cause) {
137 super(reason,cause);
144 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
149 * @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
150 * the cause is non-existent or unknown.
153 public SQLNonTransientException(String reason, String SQLState, Throwable cause) {
154 super(reason,SQLState,cause);
161 * and <code>cause</code>.
166 * @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
167 * the cause is non-existent or unknown.
170 public SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) {
171 super(reason,SQLState,vendorCode,cause);