HomeSort by relevance Sort by last modified time
    Searched defs:getCause (Results 101 - 125 of 702) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/time/temporal/
UnsupportedTemporalTypeExceptionTest.java 33 assertNull(ex.getCause());
42 assertSame(cause, ex.getCause());
  /libcore/luni/src/test/java/libcore/java/time/zone/
ZoneRulesExceptionTest.java 34 assertNull(ex.getCause());
42 assertSame(cause, ex.getCause());
  /libcore/ojluni/src/main/java/java/io/
UncheckedIOException.java 71 public IOException getCause() {
72 return (IOException) super.getCause();
86 Throwable cause = super.getCause();
  /libcore/ojluni/src/main/java/java/nio/file/
DirectoryIteratorException.java 37 * IOException} using the {@link #getCause() getCause()} method.
68 public IOException getCause() {
69 return (IOException)super.getCause();
83 Throwable cause = super.getCause();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
FactoryConfigurationErrorTest.java 28 assertNull(fce.getCause());
38 assertEquals(e.getCause(), fce.getCause());
46 assertEquals(e.getCause(), fce.getCause());
56 assertEquals(e.getCause(), fce.getCause());
64 assertEquals(e.getCause(), fce.getCause());
71 assertNull(fce.getCause());
    [all...]
ParserConfigurationExceptionTest.java 28 assertNull(pce.getCause());
36 assertNull(pce.getCause());
  /art/test/563-checker-fakestring/src/
Main.java 53 if (ex.getCause() instanceof ArrayIndexOutOfBoundsException) {
56 throw ex.getCause();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
KeyFactorySpi.java 120 public Throwable getCause()
  /external/dexmaker/dexmaker-mockito-inline-dispatcher/src/main/java/com/android/dx/mockito/inline/
MockMethodDispatcher.java 81 throw e.getCause();
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
RootFinder.java 52 windowManagerClassName), ite.getCause());
  /external/easymock/src/org/easymock/internal/
Result.java 86 throw e.getCause();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
Problem.java 93 public Optional<Throwable> getCause() {
  /external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocations.java 48 throw e.getCause();
  /external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java 70 public int getCause() {
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
ReflectionUtils.java 98 public static Throwable getCause(@NonNull Throwable throwable) {
99 Throwable cause = throwable.getCause();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
IOErrorTest.java 34 assertNull(e.getCause());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
AbstractMethodErrorTest.java 30 assertNull(error.getCause());
41 assertNull(error.getCause());
45 assertNull(error.getCause());
ClassNotFoundExceptionTest.java 37 assertNull(e.getCause());
46 assertNull(e.getCause());
57 assertEquals("Wrong cause", in, e.getCause());
ExceptionInInitializerErrorTest.java 29 assertNull(e.getCause());
38 assertNull(e.getCause());
50 assertSame(npe, e.getCause());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharacterCodingExceptionTest.java 34 assertNull(ex.getCause());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ServiceConfigurationErrorTest.java 40 assertNull(e.getCause());
53 assertEquals(iae, e.getCause());
54 assertEquals("info in the IAE", e.getCause().getMessage());
  /art/test/008-exceptions/src/
Main.java 120 System.out.println(e.getCause());
143 System.out.println(e.getCause());
173 if (!(ncdfe.getCause() instanceof BadError)) {
174 ncdfe.getCause().printStackTrace(System.out);
201 System.out.println(" cause: " + ncdfe.getCause());
210 System.out.println(" cause: " + ncdfe.getCause());
  /art/test/586-checker-null-array-get/src/
Main.java 41 throw ex.getCause(); // re-raise expected exception.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtDebuggee.java 93 if (e.getCause() instanceof DebuggeeException) {
95 throw e.getCause();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 142 public Throwable getCause()

Completed in 534 milliseconds

1 2 3 45 6 7 8 91011>>