Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

47          *  The <code>reason</code>, <code>SQLState</code> are initialized
62 * with a given <code>reason</code>. The <code>SQLState</code>
70 * @param reason a description of the exception
73 public SQLFeatureNotSupportedException(String reason) {
74 super(reason);
79 * with a given <code>reason</code> and <code>SQLState</code>.
86 * @param reason a description of the exception
90 public SQLFeatureNotSupportedException(String reason, String SQLState) {
91 super(reason,SQLState);
96 * with a given <code>reason</code>, <code>SQLState</code> and
103 * @param reason a description of the exception
108 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) {
109 super(reason,SQLState,vendorCode);
117 * The <code>reason</code> is initialized to <code>null</code> if
121 * @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
132 * <code>reason</code> and <code>cause</code>.
136 * @param reason a description of the exception.
137 * @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
141 public SQLFeatureNotSupportedException(String reason, Throwable cause) {
142 super(reason,cause);
148 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
151 * @param reason a description of the exception.
157 public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) {
158 super(reason,SQLState,cause);
164 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
167 * @param reason a description of the exception
170 * @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
174 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) {
175 super(reason,SQLState,vendorCode,cause);