Lines Matching defs:reason

58      * <code>reason</code>, <code>SQLState</code>  and
65 * @param reason a description of the exception
69 public SQLException(String reason, String SQLState, int vendorCode) {
70 super(reason);
85 * <code>reason</code> and <code>SQLState</code>.
92 * @param reason a description of the exception
95 public SQLException(String reason, String SQLState) {
96 super(reason);
109 * <code>reason</code>. The <code>SQLState</code> is initialized to
116 * @param reason a description of the exception
118 public SQLException(String reason) {
119 super(reason);
131 * The <code>reason</code>, <code>SQLState</code> are initialized
155 * The <code>reason</code> is initialized to <code>null</code> if
159 * @param cause the underlying reason for this <code>SQLException</code>
176 * <code>reason</code> and <code>cause</code>.
180 * @param reason a description of the exception.
181 * @param cause the underlying reason for this <code>SQLException</code>
186 public SQLException(String reason, Throwable cause) {
187 super(reason,cause);
198 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
201 * @param reason a description of the exception.
203 * @param cause the underlying reason for this <code>SQLException</code>
209 public SQLException(String reason, String sqlState, Throwable cause) {
210 super(reason,cause);
224 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
227 * @param reason a description of the exception
230 * @param cause the underlying reason for this <code>SQLException</code>
235 public SQLException(String reason, String sqlState, int vendorCode, Throwable cause) {
236 super(reason,cause);