Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

42          * The <code>reason</code>, <code>SQLState</code> are initialized
58 * <code>reason</code>.
67 * @param reason a description of the exception
70 public SQLDataException(String reason) {
71 super(reason);
76 * <code>reason</code> and <code>SQLState</code>. The
83 * @param reason a description of the exception
87 public SQLDataException(String reason, String SQLState) {
88 super(reason, SQLState);
93 * <code>reason</code>, <code>SQLState</code> and
100 * @param reason a description of the exception
105 public SQLDataException(String reason, String SQLState, int vendorCode) {
106 super(reason, SQLState, vendorCode);
114 * The <code>reason</code> is initialized to <code>null</code> if
118 * @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 SQLDataException(String reason, Throwable cause) {
138 super(reason, cause);
143 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
146 * @param reason a description of the exception.
148 * @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
152 public SQLDataException(String reason, String SQLState, Throwable cause) {
153 super(reason, SQLState, cause);
158 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
161 * @param reason a description of the exception
164 * @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
168 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) {
169 super(reason, SQLState, vendorCode, cause);