HomeSort by relevance Sort by last modified time
    Searched refs:getCause (Results 1 - 25 of 394) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 20 Throwable getCause();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
OutOfMemoryErrorTest.java 28 assertNull(e.getCause());
39 assertNull(e.getCause());
43 assertNull(e.getCause());
AssertionErrorTest.java 27 assertNull(e.getCause());
34 assertNull(e.getCause());
39 assertSame(npe, e.getCause());
45 assertNull(e.getCause());
51 assertNull(e.getCause());
57 assertNull(e.getCause());
63 assertNull(e.getCause());
69 assertNull(e.getCause());
75 assertNull(e.getCause());
ArithmeticExceptionTest.java 30 assertNull(e.getCause());
39 assertNull(e.getCause());
AbstractMethodErrorTest.java 30 assertNull(error.getCause());
41 assertNull(error.getCause());
45 assertNull(error.getCause());
ExceptionInInitializerErrorTest.java 29 assertNull(e.getCause());
38 assertNull(e.getCause());
50 assertSame(npe, e.getCause());
SecurityExceptionTest.java 33 assertNull(e.getCause());
42 assertNull(e.getCause());
53 assertSame(npe, e.getCause());
63 assertSame(npe, e.getCause());
ArrayStoreExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
ClassCastExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
CloneNotSupportedExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
ErrorTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
ExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IllegalAccessErrorTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IllegalAccessExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IllegalMonitorStateExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IllegalThreadStateExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IncompatibleClassChangeErrorTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
IndexOutOfBoundsExceptionTest.java 31 assertNull(e.getCause());
40 assertNull(e.getCause());
  /frameworks/base/voip/java/android/net/sip/
SipException.java 33 && (cause.getCause() != null))
34 ? cause.getCause()
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathException.java 74 public Throwable getCause() {
79 if( getCause() != null ) {
80 getCause().printStackTrace(s);
92 if( getCause() != null ) {
93 getCause().printStackTrace(s);
  /libcore/luni/src/test/java/tests/api/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...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
StoreException.java 14 public Throwable getCause()
  /external/emma/core/java12/com/vladium/util/exception/
IThrowableWrapper.java 32 * Throwable.getCause() in J2SE 1.4.
36 Throwable getCause ();
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeExceptionTest.java 29 assertEquals(npe, re.getCause());
35 assertNull(re.getCause());
41 assertEquals(npe, re.getCause());
44 assertNull(re.getCause());
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLExceptionTest.java 47 assertNull("getCause() must return null", sE.getCause());
59 assertNull("getCause() must return null", sE.getCause());
70 assertNull("getCause() must return null", sE.getCause());
86 assertNotNull("getCause() must not return null", sE.getCause());
87 assertEquals("getCause() must return ".concat(tCause.toString()), sE.getCause(), tCause)
    [all...]

Completed in 504 milliseconds

1 2 3 4 5 6 7 8 91011>>