Searched refs:getCause (Results 276 - 300 of 357) sorted by relevance

<<1112131415

/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorParser.java1114 while (previous.getCause() != null) {
1115 previous = (RuntimeException) previous.getCause(); // chain specially
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DSerializableTestUtility.java710 sameThrowable(a.getCause(), b.getCause());
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java544 assertTrue(e.getCause() instanceof IndexOutOfBoundsException);
550 assertTrue(e.getCause() instanceof IndexOutOfBoundsException);
H A DDescriptorsTest.java474 assertTrue(e.getCause() instanceof NumberFormatException);
475 assertTrue(e.getCause().getMessage().indexOf("invalid") != -1);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DRFC3280CertPathUtilities.java1543 if (null != e.getCause())
1545 cause = e.getCause();
2245 throw new CertPathValidatorException(e.getMessage(), e.getCause(), certPath, index);
/external/guava/guava/src/com/google/common/reflect/
H A DTypes.java387 throw e.getCause();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DCycleDetectingLockFactory.java593 for (Throwable t = conflictingStackTrace; t != null; t = t.getCause()) {
H A DMoreExecutors.java781 throw Throwables.propagate(e.getCause());
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java436 throw new UncheckedExecutionException(e.getCause());
/external/guava/guava-testlib/src/com/google/common/testing/
H A DArbitraryInstances.java374 logger.log(Level.WARNING, "Exception while invoking default constructor.", e.getCause());
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DExecutionListBenchmark.java507 e.getCause());
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheBuilderGwtTest.java260 switch (notification.getCause()) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleDataTest.java163 assertEquals("", "java.lang.ArrayIndexOutOfBoundsException", e.getCause().getClass().getName());
/external/mockito/src/test/java/org/mockitoutil/
H A DClassLoaders.java136 throw (T) ex.getCause();
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
H A DHttpURLConnectionImpl.java478 IOException toThrow = e.getCause();
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
H A DMethodDescriptor.java140 throw t.getCause();
/external/guice/extensions/persist/lib/
H A Dcommons-logging-1.0.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/external/guice/extensions/struts2/lib/
H A Dcommons-logging-1.0.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/external/guice/lib/build/
H A Dcommons-logging-1.0.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogFilter.java725 if (ex.getCause() != null && ex.getCause() instanceof IOException) {
/external/robolectric/v1/lib/main/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
H A Dcommons-logging-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/external/robolectric/v3/runtime/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java799 assertTrue(expected.getCause() instanceof CertificateException);
2133 Throwable cause = expected.getCause();
2146 Throwable cause = expected.getCause();
/external/testng/src/main/java/org/testng/
H A DTestNG.java323 while (t.getCause() != null) t = t.getCause();

Completed in 700 milliseconds

<<1112131415