Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

43          * The <code>reason</code>, <code>SQLState</code> are initialized
58 * with a given <code>reason</code>. The <code>SQLState</code>
66 * @param reason a description of the exception
69 public SQLRecoverableException(String reason) {
70 super(reason);
75 * with a given <code>reason</code> and <code>SQLState</code>.
82 * @param reason a description of the exception
86 public SQLRecoverableException(String reason, String SQLState) {
87 super(reason, SQLState);
92 * with a given <code>reason</code>, <code>SQLState</code> and
99 * @param reason a description of the exception
104 public SQLRecoverableException(String reason, String SQLState, int vendorCode) {
105 super(reason, SQLState, vendorCode);
113 * The <code>reason</code> is initialized to <code>null</code> if
117 * @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
128 * <code>reason</code> and <code>cause</code>.
132 * @param reason a description of the exception.
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
137 public SQLRecoverableException(String reason, Throwable cause) {
138 super(reason, cause);
144 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
147 * @param reason a description of the exception.
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
153 public SQLRecoverableException(String reason, String SQLState, Throwable cause) {
154 super(reason, SQLState, cause);
160 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
163 * @param reason a description of the exception
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
170 public SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) {
171 super(reason, SQLState, vendorCode, cause);