Searched refs:getCause (Results 51 - 75 of 357) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java25 public Throwable getCause() method in class:ExtCertPathBuilderException
H A DExtCertPathValidatorException.java26 public Throwable getCause() method in class:ExtCertPathValidatorException
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DAnnotatedException.java28 public Throwable getCause() method in class:AnnotatedException
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/
H A DLogConfigurationException.java89 public Throwable getCause() { method in class:LogConfigurationException
/external/testng/src/main/java/org/testng/internal/thread/
H A DFutureResultAdapter.java25 throw new ThreadExecutionException(ee.getCause()); // NOTE there is no need to keep the EE
/external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/badexecutor/
H A DBadExecutorTest.java46 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
56 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
66 assertThat(e.getCause()).isInstanceOf(RejectedExecutionException.class);
/external/mockito/src/main/java/org/mockito/internal/configuration/injection/
H A DConstructorInjection.java50 if(e.getCause() instanceof InvocationTargetException) {
51 Throwable realCause = e.getCause().getCause();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DExceptionCaughtDebuggee.java92 if (e.getCause() instanceof DebuggeeException) {
94 throw e.getCause();
/external/guava/guava/src/com/google/common/eventbus/
H A DEventSubscriber.java80 if (e.getCause() instanceof Error) {
81 throw (Error) e.getCause();
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
H A DMockFutureListener.java67 throw e.getCause();
84 Assert.assertSame(expectedCause, expected.getCause());
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
H A DExceptionRecorder.java32 causeType = ex.getCause() == null ? null : ex.getCause().getClass();
/external/r8/src/test/java/com/android/tools/r8/
H A DD8RunExamplesAndroidOTest.java40 throw re.getCause() == null ? re : re.getCause();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DInputOutputExceptionTest.java32 assertTrue(e.getCause() instanceof IOException);
42 assertTrue(e.getCause() instanceof IOException);
/external/guice/core/test/com/google/inject/
H A DProvisionExceptionsTest.java52 assertEquals(IllegalStateException.class, pe.getCause().getClass());
74 assertEquals(IOException.class, pe.getCause().getClass());
99 assertEquals(IllegalStateException.class, pe.getCause().getClass());
122 assertEquals(IllegalStateException.class, pe.getCause().getClass());
146 assertEquals(IOException.class, pe.getCause().getClass());
/external/apache-http/src/org/apache/http/client/utils/
H A DCloneUtils.java60 Throwable cause = ex.getCause();
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DBenchmarkClass.java156 propagateIfInstanceOf(e.getCause(), SkipThisScenarioException.class);
158 "Exception thrown from a @BeforeExperiment method", e.getCause());
170 propagateIfInstanceOf(e.getCause(), SkipThisScenarioException.class);
172 "Exception thrown from an @AfterExperiment method", e.getCause());
H A DMainModule.java40 "Exception thrown while initializing class '" + className + "'", e.getCause());
H A DResultProcessorCreator.java43 throw new UserCodeException("ResultProcessor %s could not be instantiated", e.getCause());
/external/guava/guava-tests/test/com/google/common/cache/
H A DAbstractLoadingCacheTest.java57 assertEquals(cause, expected.getCause());
88 assertEquals(cause, expected.getCause());
119 assertEquals(cause, expected.getCause());
150 assertEquals(cause, expected.getCause());
H A DNullCacheTest.java54 assertSame(RemovalCause.SIZE, notification.getCause());
71 assertSame(RemovalCause.SIZE, notification.getCause());
88 assertSame(RemovalCause.SIZE, notification.getCause());
119 assertSame(e, uee.getCause());
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractFutureTest.java60 assertSame(failure, ee1.getCause());
61 assertSame(failure, ee2.getCause());
78 assertNotNull(e.getCause());
93 assertNotNull(e.getCause());
/external/javassist/src/main/javassist/
H A DCannotCompileException.java30 public Throwable getCause() { method in class:CannotCompileException
/external/junit/src/main/java/org/junit/internal/
H A DArrayComparisonFailure.java56 sb.append(getCause().getMessage());
/external/junit/src/main/java/org/junit/internal/runners/
H A DSuiteMethod.java37 throw e.getCause();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DMockDateBeanConstructorTest.java35 e.getCause().getMessage());

Completed in 723 milliseconds

1234567891011>>