Searched defs:cause (Results 51 - 75 of 100) sorted by relevance

1234

/libcore/luni/src/main/java/android/system/
H A DGaiException.java46 * Constructs an instance with the given function name, error value, and cause.
48 public GaiException(String functionName, int error, Throwable cause) { argument
49 super(cause);
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathException.java33 private final Throwable cause; field in class:XPathException
43 * <p>The <code>cause</code> is not initialized.</p>
54 this.cause = null;
58 * <p>Constructs a new <code>XPathException</code> with the specified <code>cause</code>.</p>
60 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
62 * @param cause The cause.
64 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
66 public XPathException(Throwable cause) { argument
67 super(cause
[all...]
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DLambdaConversionException.java49 * Constructs a {@code LambdaConversionException} with a message and cause.
51 * @param cause the cause
53 public LambdaConversionException(String message, Throwable cause) { argument
54 super(message, cause);
58 * Constructs a {@code LambdaConversionException} with a cause.
59 * @param cause the cause
61 public LambdaConversionException(Throwable cause) { argument
62 super(cause);
73 LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DInterruptedIOException.java78 public InterruptedIOException(Throwable cause) { argument
79 super(cause);
83 * Constructs a new instance with given detail message and cause.
88 public InterruptedIOException(String detailMessage, Throwable cause) { argument
89 super(detailMessage, cause);
H A DUncheckedIOException.java42 * @param cause
46 * if the cause is {@code null}
48 public UncheckedIOException(String message, IOException cause) { argument
49 super(message, Objects.requireNonNull(cause));
55 * @param cause
59 * if the cause is {@code null}
61 public UncheckedIOException(IOException cause) { argument
62 super(Objects.requireNonNull(cause));
66 * Returns the cause of this exception.
68 * @return the {@code IOException} which is the cause o
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DError.java54 * The cause is not initialized, and may subsequently be initialized by a
63 * cause is not initialized, and may subsequently be initialized by
75 * cause. <p>Note that the detail message associated with
76 * {@code cause} is <i>not</i> automatically incorporated in
81 * @param cause the cause (which is saved for later retrieval by the
83 * permitted, and indicates that the cause is nonexistent or
87 public Error(String message, Throwable cause) { argument
88 super(message, cause);
92 * Constructs a new error with the specified cause an
104 Error(Throwable cause) argument
123 Error(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DException.java50 * The cause is not initialized, and may subsequently be initialized by a
59 * cause is not initialized, and may subsequently be initialized by
71 * cause. <p>Note that the detail message associated with
72 * {@code cause} is <i>not</i> automatically incorporated in
77 * @param cause the cause (which is saved for later retrieval by the
79 * permitted, and indicates that the cause is nonexistent or
83 public Exception(String message, Throwable cause) { argument
84 super(message, cause);
88 * Constructs a new exception with the specified cause an
101 Exception(Throwable cause) argument
119 Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DRuntimeException.java47 * detail message. The cause is not initialized, and may subsequently be
55 * The cause is not initialized, and may subsequently be initialized by a
67 * cause. <p>Note that the detail message associated with
68 * {@code cause} is <i>not</i> automatically incorporated in
73 * @param cause the cause (which is saved for later retrieval by the
75 * permitted, and indicates that the cause is nonexistent or
79 public RuntimeException(String message, Throwable cause) { argument
80 super(message, cause);
83 /** Constructs a new runtime exception with the specified cause an
95 RuntimeException(Throwable cause) argument
114 RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/libcore/ojluni/src/main/java/java/security/cert/
H A DCertificateException.java61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CertificateException(String message, Throwable cause) { argument
71 super(message, cause);
75 * Creates a <code>CertificateException</code> with the specified cause
76 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</t
85 CertificateException(Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/java/security/spec/
H A DInvalidKeySpecException.java67 * detail message and cause.
71 * @param cause the cause (which is saved for later retrieval by the
73 * and indicates that the cause is nonexistent or unknown.)
76 public InvalidKeySpecException(String message, Throwable cause) { argument
77 super(message, cause);
81 * Creates a <code>InvalidKeySpecException</code> with the specified cause
82 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
84 * <tt>cause</t
91 InvalidKeySpecException(Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DBatchUpdateException.java61 * The <code>cause</code> is not initialized, and may subsequently be
90 * The <code>cause</code> is not initialized, and may subsequently be
116 * The <code>cause</code> is not initialized, and may subsequently be
166 * The <code>cause</code> is not initialized, and may subsequently be
179 * a given <code>cause</code>.
184 * <code>cause==null</code> or to <code>cause.toString()</code> if
185 * <code>cause!=null</code>.
186 * @param cause the underlying reason for this <code>SQLException</code>
188 * may be null indicating the cause i
191 BatchUpdateException(Throwable cause) argument
217 BatchUpdateException(int []updateCounts , Throwable cause) argument
241 BatchUpdateException(String reason, int []updateCounts, Throwable cause) argument
265 BatchUpdateException(String reason, String SQLState, int []updateCounts, Throwable cause) argument
292 BatchUpdateException(String reason, String SQLState, int vendorCode, int []updateCounts,Throwable cause) argument
[all...]
H A DSQLClientInfoException.java60 * 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 !
118 SQLClientInfoException(Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
174 SQLClientInfoException(String reason, Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
231 SQLClientInfoException(String reason, String SQLState, Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
292 SQLClientInfoException(String reason, String SQLState, int vendorCode, Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
[all...]
H A DSQLDataException.java45 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
79 * The <code>cause</code> is not initialized, and may subsequently be
96 * The <code>cause</code> is not initialized, and may subsequently be
111 * <code>cause</code>.
115 * <code>cause==null</code> or to <code>cause.toString()</code> if
116 * <code>cause!=null</code>.
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
119 * the cause i
122 SQLDataException(Throwable cause) argument
137 SQLDataException(String reason, Throwable cause) argument
152 SQLDataException(String reason, String SQLState, Throwable cause) argument
168 SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLFeatureNotSupportedException.java50 * 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 i
125 SQLFeatureNotSupportedException(Throwable cause) argument
141 SQLFeatureNotSupportedException(String reason, Throwable cause) argument
157 SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) argument
174 SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLIntegrityConstraintViolationException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @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
117 * the cause i
120 SQLIntegrityConstraintViolationException(Throwable cause) argument
136 SQLIntegrityConstraintViolationException(String reason, Throwable cause) argument
152 SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) argument
169 SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLInvalidAuthorizationSpecException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @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
117 * the cause i
120 SQLInvalidAuthorizationSpecException(Throwable cause) argument
136 SQLInvalidAuthorizationSpecException(String reason, Throwable cause) argument
152 SQLInvalidAuthorizationSpecException(String reason, String SQLState, Throwable cause) argument
169 SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientConnectionException.java32 * the operation is retried without the cause of the failure being corrected.
45 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
77 * The <code>cause</code> is not initialized, and may subsequently be
95 * The <code>cause</code> is not initialized, and may subsequently be
110 * with a given <code>cause</code>.
114 * <code>cause==null</code> or to <code>cause.toString()</code> if
115 * <code>cause!=null</code>.
117 * @param cause th
121 SQLNonTransientConnectionException(Throwable cause) argument
137 SQLNonTransientConnectionException(String reason, Throwable cause) argument
153 SQLNonTransientConnectionException(String reason, String SQLState, Throwable cause) argument
170 SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientException.java30 * of the same operation would fail unless the cause of the <code>SQLException</code>
43 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @param cause th
120 SQLNonTransientException(Throwable cause) argument
136 SQLNonTransientException(String reason, Throwable cause) argument
153 SQLNonTransientException(String reason, String SQLState, Throwable cause) argument
170 SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLRecoverableException.java46 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
77 * The <code>cause</code> is not initialized, and may subsequently be
95 * The <code>cause</code> is not initialized, and may subsequently be
110 * with a given <code>cause</code>.
114 * <code>cause==null</code> or to <code>cause.toString()</code> if
115 * <code>cause!=null</code>.
117 * @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
118 * the cause i
121 SQLRecoverableException(Throwable cause) argument
137 SQLRecoverableException(String reason, Throwable cause) argument
153 SQLRecoverableException(String reason, String SQLState, Throwable cause) argument
170 SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLSyntaxErrorException.java44 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
75 * The <code>cause</code> is not initialized, and may subsequently be
93 * The <code>cause</code> is not initialized, and may subsequently be
108 * with a given <code>cause</code>.
112 * <code>cause==null</code> or to <code>cause.toString()</code> if
113 * <code>cause!=null</code>.
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
116 * the cause i
119 SQLSyntaxErrorException(Throwable cause) argument
135 SQLSyntaxErrorException(String reason, Throwable cause) argument
151 SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) argument
168 SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTimeoutException.java42 * The <code>cause</code> is not initialized, and may subsequently be
58 * The <code>cause</code> is not initialized, and may subsequently be
73 * The <code>cause</code> is not initialized, and may subsequently be
91 * The <code>cause</code> is not initialized, and may subsequently be
106 * with a given <code>cause</code>.
110 * <code>cause==null</code> or to <code>cause.toString()</code> if
111 * <code>cause!=null</code>.
113 * @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
114 * the cause i
117 SQLTimeoutException(Throwable cause) argument
133 SQLTimeoutException(String reason, Throwable cause) argument
149 SQLTimeoutException(String reason, String SQLState, Throwable cause) argument
166 SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransactionRollbackException.java44 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
75 * The <code>cause</code> is not initialized, and may subsequently be
93 * The <code>cause</code> is not initialized, and may subsequently be
108 * with a given <code>cause</code>.
112 * <code>cause==null</code> or to <code>cause.toString()</code> if
113 * <code>cause!=null</code>.
115 * @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
116 * the cause i
119 SQLTransactionRollbackException(Throwable cause) argument
135 SQLTransactionRollbackException(String reason, Throwable cause) argument
151 SQLTransactionRollbackException(String reason, String SQLState, Throwable cause) argument
168 SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientConnectionException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @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
117 * the cause i
120 SQLTransientConnectionException(Throwable cause) argument
136 SQLTransientConnectionException(String reason, Throwable cause) argument
152 SQLTransientConnectionException(String reason, String SQLState, Throwable cause) argument
169 SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientException.java43 * The <code>cause</code> is not initialized, and may subsequently be
59 * The <code>cause</code> is not initialized, and may subsequently be
74 * The <code>cause</code> is not initialized, and may subsequently be
92 * The <code>cause</code> is not initialized, and may subsequently be
107 * with a given <code>cause</code>.
111 * <code>cause==null</code> or to <code>cause.toString()</code> if
112 * <code>cause!=null</code>.
114 * @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
115 * the cause i
118 SQLTransientException(Throwable cause) argument
134 SQLTransientException(String reason, Throwable cause) argument
150 SQLTransientException(String reason, String SQLState, Throwable cause) argument
167 SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DInvalidPropertiesFormatException.java49 * cause.
51 * @param cause the cause (which is saved for later retrieval by the
54 public InvalidPropertiesFormatException(Throwable cause) { argument
55 super(cause==null ? null : cause.toString());
56 this.initCause(cause);

Completed in 1047 milliseconds

1234