Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

39          * The <code>reason</code>, <code>SQLState</code> are initialized
54 * with a given <code>reason</code>. The <code>SQLState</code>
62 * @param reason a description of the exception
65 public SQLTimeoutException(String reason) {
66 super(reason);
71 * with a given <code>reason</code> and <code>SQLState</code>.
78 * @param reason a description of the exception
82 public SQLTimeoutException(String reason, String SQLState) {
83 super(reason, SQLState);
88 * with a given <code>reason</code>, <code>SQLState</code> and
95 * @param reason a description of the exception
100 public SQLTimeoutException(String reason, String SQLState, int vendorCode) {
101 super(reason, SQLState, vendorCode);
109 * The <code>reason</code> is initialized to <code>null</code> if
113 * @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
124 * <code>reason</code> and <code>cause</code>.
128 * @param reason a description of the exception.
129 * @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 public SQLTimeoutException(String reason, Throwable cause) {
134 super(reason, cause);
140 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
143 * @param reason a description of the exception.
145 * @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 public SQLTimeoutException(String reason, String SQLState, Throwable cause) {
150 super(reason, SQLState, cause);
156 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
159 * @param reason a description of the exception
162 * @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
166 public SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) {
167 super(reason, SQLState, vendorCode, cause);