Lines Matching defs:cause

50          * The <code>cause</code> is not initialized, and may subsequently be
66 * The <code>cause</code> is not initialized, and may subsequently be
81 * The <code>cause</code> is not initialized, and may subsequently be
99 * The <code>cause</code> is not initialized, and may subsequently be
114 * with a given <code>cause</code>.
118 * <code>cause==null</code> or to <code>cause.toString()</code> if
119 * <code>cause!=null</code>.
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
122 * the cause is non-existent or unknown.
125 public SQLFeatureNotSupportedException(Throwable cause) {
126 super(cause);
132 * <code>reason</code> and <code>cause</code>.
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
138 * the cause is non-existent or unknown.
141 public SQLFeatureNotSupportedException(String reason, Throwable cause) {
142 super(reason,cause);
148 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
153 * @param cause the (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
154 * the cause is non-existent or unknown.
157 public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) {
158 super(reason,SQLState,cause);
165 * and <code>cause</code>.
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
171 * the cause is non-existent or unknown.
174 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) {
175 super(reason,SQLState,vendorCode,cause);