Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

40          * The <code>reason</code>, <code>SQLState</code> are initialized
55 * with a given <code>reason</code>. The <code>SQLState</code>
63 * @param reason a description of the exception
66 public SQLTransientException(String reason) {
67 super(reason);
72 * with a given <code>reason</code> and <code>SQLState</code>.
79 * @param reason a description of the exception
83 public SQLTransientException(String reason, String SQLState) {
84 super(reason,SQLState);
89 * with a given <code>reason</code>, <code>SQLState</code> and
96 * @param reason a description of the exception
101 public SQLTransientException(String reason, String SQLState, int vendorCode) {
102 super(reason,SQLState,vendorCode);
110 * The <code>reason</code> is initialized to <code>null</code> if
114 * @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
125 * <code>reason</code> and <code>cause</code>.
129 * @param reason a description of the exception.
130 * @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 public SQLTransientException(String reason, Throwable cause) {
135 super(reason,cause);
141 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
144 * @param reason a description of the exception.
146 * @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 public SQLTransientException(String reason, String SQLState, Throwable cause) {
151 super(reason,SQLState,cause);
157 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
160 * @param reason a description of the exception
163 * @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 public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) {
168 super(reason,SQLState,vendorCode,cause);