Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

40          *  The <code>reason</code>, <code>SQLState</code> are initialized
56 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLNonTransientException(String reason) {
69 super(reason);
74 * with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLNonTransientException(String reason, String SQLState) {
86 super(reason,SQLState);
91 * with a given <code>reason</code>, <code>SQLState</code> and
98 * @param reason a description of the exception
103 public SQLNonTransientException(String reason, String SQLState, int vendorCode) {
104 super(reason,SQLState,vendorCode);
112 * The <code>reason</code> is initialized to <code>null</code> if
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
127 * <code>reason</code> and <code>cause</code>.
131 * @param reason a description of the exception.
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
136 public SQLNonTransientException(String reason, Throwable cause) {
137 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 SQLNonTransientException(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 SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) {
171 super(reason,SQLState,vendorCode,cause);