Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

59    * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code> and
66 * @param reason a description of the error
80 public BatchUpdateException( String reason, String SQLState, int vendorCode,
82 super(reason, SQLState, vendorCode);
88 * <code>reason</code>, <code>SQLState</code> and
96 * @param reason a description of the exception
108 public BatchUpdateException(String reason, String SQLState,
110 this(reason, SQLState, 0, updateCounts);
115 * <code>reason</code> and <code>updateCounts</code>.
124 * @param reason a description of the exception
135 public BatchUpdateException(String reason, int[] updateCounts) {
136 this(reason, null, 0, updateCounts);
143 * {@link Throwable#initCause(java.lang.Throwable)} method. The <code>reason</code>
164 * The <code>reason</code>, <code>SQLState</code> and <code>updateCounts</code>
183 * The <code>reason</code> is initialized to <code>null</code> if
186 * @param cause the underlying reason for this <code>SQLException</code>
200 * The <code>reason</code> is initialized to <code>null</code> if
212 * @param cause the underlying reason for this <code>SQLException</code>
223 * a given <code>reason</code>, <code>cause</code>
227 * @param reason a description of the exception
236 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method);
241 public BatchUpdateException(String reason, int []updateCounts, Throwable cause) {
242 this(reason, null, 0, updateCounts, cause);
247 * a given <code>reason</code>, <code>SQLState</code>,<code>cause</code>, and
250 * @param reason a description of the exception
260 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method);
265 public BatchUpdateException(String reason, String SQLState,
267 this(reason, SQLState, 0, updateCounts, cause);
272 * a given <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
275 * @param reason a description of the error
287 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method);
292 public BatchUpdateException(String reason, String SQLState, int vendorCode,
294 super(reason, SQLState, vendorCode, cause);