Lines Matching refs:cause

60      * The <code>cause</code> is not initialized, and may subsequently be
78 * The <code>cause</code> is not initialized, and may subsequently be
99 * a given <code>cause</code> and <code>failedProperties</code>.
102 * <code>cause==null</code> or to <code>cause.toString()</code> if
103 * <code>cause!=null</code> and the vendor code is initialized to 0.
113 * @param cause the (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
114 * the cause is non-existent or unknown.
119 Throwable cause) {
121 super(cause != null?cause.toString():null);
122 initCause(cause);
132 * The <code>cause</code> is not initialized, and may subsequently be
156 * given <code>reason</code>, <code>cause</code> and
169 * @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
170 * the cause is non-existent or unknown.
176 Throwable cause) {
179 initCause(cause);
187 * The <code>cause</code> is not initialized, and may subsequently be
214 * given <code>reason</code>, <code>SQLState</code>, <code>cause</code>
226 * @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
227 * the cause is non-existent or unknown.
234 Throwable cause) {
237 initCause(cause);
245 * The <code>cause</code> is not initialized, and may subsequently be
274 * <code>cause</code>, <code>vendorCode</code> and
287 * @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
288 * the cause is non-existent or unknown.
296 Throwable cause) {
299 initCause(cause);