OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCause
(Results
226 - 250
of
326
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLClientInfoExceptionTest.java
94
cause, sqlClientInfoException.
getCause
());
155
cause, sqlClientInfoException.
getCause
());
206
cause, sqlClientInfoException.
getCause
());
233
cause, sqlClientInfoException.
getCause
());
SQLExceptionTest.java
547
assertEquals(e, exception.
getCause
());
548
assertEquals("error", exception.
getCause
().getMessage());
559
assertEquals(e, exception.
getCause
());
560
assertEquals("error", exception.
getCause
().getMessage());
572
assertEquals(e, exception.
getCause
());
573
assertEquals("error", exception.
getCause
().getMessage());
586
assertEquals(e, exception.
getCause
());
587
assertEquals("error", exception.
getCause
().getMessage());
BatchUpdateExceptionTest.java
305
assertEquals(cause, batchUpdateException.
getCause
());
325
assertEquals(cause, batchUpdateException.
getCause
());
346
assertEquals(cause, batchUpdateException.
getCause
());
362
assertNull(batchUpdateException.
getCause
());
377
assertNull(batchUpdateException.
getCause
());
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
TrustManagerFactorySpiTests.java
84
assertTrue("Incorrect exception", e.
getCause
() instanceof KeyStoreException);
/external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java
70
public int
getCause
() {
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java
217
if (initThr.
getCause
() == null) {
218
assertNull(dserThr.
getCause
());
220
assertNotNull(dserThr.
getCause
());
221
THROWABLE_COMPARATOR.assertDeserialized(initThr.
getCause
(),
222
dserThr.
getCause
());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThrowableTest.java
34
assertNull(e.
getCause
());
43
assertNull(e.
getCause
());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
InvocationTargetExceptionTest.java
252
assertNull(e.
getCause
());
267
assertNull(e.
getCause
());
ProxyTest.java
132
assertSame(Support_Proxy_ParentException.class, e.
getCause
().getClass());
145
assertSame(IllegalAccessException.class, e.
getCause
().getClass());
/external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java
299
cause = ((TransformerException)cause).
getCause
();
339
cause = ((TransformerException)cause).
getCause
();
/dalvik/tests/086-null-super/src/
Main.java
156
Throwable cause = ite.
getCause
();
/dalvik/tests/087-gc-after-link/src/
Main.java
165
Throwable cause = ite.
getCause
();
/external/easymock/src/org/easymock/internal/
Result.java
86
throw e.
getCause
();
/libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java
265
fail(e.
getCause
().getMessage());
273
return e.
getCause
() != null
274
&& e.
getCause
().getMessage().startsWith("Could not find function");
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java
269
if (initThr.
getCause
() == null) {
270
Assert.assertNull(dserThr.
getCause
());
272
Assert.assertNotNull(dserThr.
getCause
());
274
THROWABLE_COMPARATOR.assertDeserialized(initThr.
getCause
(),
275
dserThr.
getCause
());
/external/guava/src/com/google/common/util/concurrent/
Futures.java
446
setException(e.
getCause
());
461
setException(e.
getCause
());
467
setException(e.
getCause
());
AbstractService.java
134
throw Throwables.propagate(e.
getCause
());
142
throw Throwables.propagate(e.
getCause
());
/dalvik/tests/068-classloader/src/
FancyLoader.java
126
ite.
getCause
());
Main.java
104
Throwable cause = cnfe.
getCause
();
124
Throwable cause = cnfe.
getCause
();
/external/emma/core/java12/com/vladium/util/exception/
AbstractException.java
275
public final Throwable
getCause
()
AbstractRuntimeException.java
275
public final Throwable
getCause
()
ExceptionCommon.java
184
t = tw.
getCause
();
228
t = tw.
getCause
();
/libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java
61
* @see #
getCause
72
public Throwable
getCause
() {
91
* {@link #
getCause
()} method). (A <tt>null</tt> value is
/libcore/support/src/test/java/tests/io/
MockOs.java
50
throw e.
getCause
();
/libcore/luni/src/main/java/java/lang/
Throwable.java
279
* {@link #
getCause
() cause}, the method will be invoked recursively for
297
* {@link #
getCause
() cause}, the method will be invoked recursively for the
350
Throwable cause =
getCause
();
397
public Throwable
getCause
() {
Completed in 580 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>