Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

41          *  The <code>reason</code>, <code>SQLState</code> are initialized
56 * with a given <code>reason</code>. The <code>SQLState</code>
64 * @param reason a description of the exception
67 public SQLSyntaxErrorException(String reason) {
68 super(reason);
73 * with a given <code>reason</code> and <code>SQLState</code>.
80 * @param reason a description of the exception
84 public SQLSyntaxErrorException(String reason, String SQLState) {
85 super(reason, SQLState);
90 * with a given <code>reason</code>, <code>SQLState</code> and
97 * @param reason a description of the exception
102 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) {
103 super(reason, SQLState, vendorCode);
111 * The <code>reason</code> is initialized to <code>null</code> if
115 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval bythe <code>getCause()</code> method); may be null indicating
126 * <code>reason</code> and <code>cause</code>.
130 * @param reason a description of the exception.
131 * @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
135 public SQLSyntaxErrorException(String reason, Throwable cause) {
136 super(reason, cause);
142 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
145 * @param reason a description of the exception.
151 public SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) {
152 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 SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) {
169 super(reason, SQLState, vendorCode, cause);