/libcore/luni/src/main/java/java/security/ |
H A D | PrivilegedActionException.java | 31 public Exception getException() { method in class:PrivilegedActionException
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ |
H A D | SAXExceptionTest.java | 32 assertNull(e.getException()); 42 assertEquals(c, e.getException()); 48 assertEquals(c, e.getException()); 54 assertNull(e.getException()); 62 assertNull(e.getException()); 68 assertNull(e.getException()); 78 assertEquals(c, e.getException()); 84 assertNull(e.getException());
|
H A D | SAXParseExceptionTest.java | 50 assertEquals(c, e.getException()); 61 assertEquals(c, e.getException()); 72 assertEquals(c, e.getException()); 83 assertNull(e.getException()); 102 assertNull(e.getException()); 113 assertNull(e.getException()); 124 assertNull(e.getException()); 140 assertEquals(c, e.getException()); 151 assertEquals(c, e.getException()); 162 assertEquals(c, e.getException()); [all...] |
/libcore/luni/src/main/java/java/lang/ |
H A D | ClassNotFoundException.java | 68 public Throwable getException() { method in class:ClassNotFoundException
|
H A D | ExceptionInInitializerError.java | 67 public Throwable getException() { method in class:ExceptionInInitializerError
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/ |
H A D | FactoryConfigurationErrorTest.java | 76 assertNull(fce.getException()); 78 assertNull(fce.getException()); 81 assertEquals(e, fce.getException()); 84 assertEquals(npe, fce.getException());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
H A D | ClassNotFoundExceptionTest.java | 55 assertEquals("Wrong Exception", in, e.getException());
|
H A D | ExceptionInInitializerErrorTest.java | 49 assertSame(npe, e.getException());
|
/libcore/luni/src/main/java/javax/xml/parsers/ |
H A D | FactoryConfigurationError.java | 116 public Exception getException () { method in class:FactoryConfigurationError
|
/libcore/luni/src/main/java/javax/xml/transform/ |
H A D | TransformerFactoryConfigurationError.java | 110 public Exception getException() { method in class:TransformerFactoryConfigurationError
|
H A D | TransformerException.java | 63 public Throwable getException() { method in class:TransformerException
|
/libcore/luni/src/main/java/org/xml/sax/ |
H A D | SAXException.java | 117 public Exception getException () method in class:SAXException
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
H A D | SSLSessionTest.java | 324 if (server.getException() != null) { 325 throw new RuntimeException(server.getException()); 329 if (client.getException() != null) { 330 throw new RuntimeException(client.getException()); 549 public Exception getException() { method in class:SSLSessionTest.TestServer 617 public Exception getException() { method in class:SSLSessionTest.TestClient
|
H A D | HandshakeCompletedEventTest.java | 360 Exception e = server.getException(); 366 e = client.getException(); 455 public Exception getException() { method in class:HandshakeCompletedEventTest.TestServer 526 public Exception getException() { method in class:HandshakeCompletedEventTest.TestClient
|
H A D | SSLSocketTest.java | 491 Exception e = server.getException(); 575 public Exception getException() { method in class:SSLSocketTest.TestServer
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | RecursiveActionTest.java | 57 assertNull(a.getException()); 88 assertNull(a.getException()); 106 assertTrue(a.getException() instanceof CancellationException); 133 assertSame(t.getClass(), a.getException().getClass()); 318 checkCompletedAbnormally(f, f.getException()); 412 assertTrue(f.getException() instanceof FJException); 413 checkCompletedAbnormally(f, f.getException()); 531 assertTrue(f.getException() instanceof FJException); 532 checkCompletedAbnormally(f, f.getException()); 604 assertTrue(f.getException() instanceo [all...] |
H A D | ForkJoinTaskTest.java | 49 assertNull(a.getException()); 58 assertNull(a.getException()); 70 assertNull(a.getException()); 89 assertNull(a.getException()); 123 assertTrue(a.getException() instanceof CancellationException); 160 assertSame(t.getClass(), a.getException().getClass()); 525 assertTrue(f.getException() instanceof FJException); 526 checkCompletedAbnormally(f, f.getException()); 598 assertTrue(f.getException() instanceof FJException); 599 checkCompletedAbnormally(f, f.getException()); [all...] |
H A D | RecursiveTaskTest.java | 55 assertNull(a.getException()); 86 assertNull(a.getException()); 124 assertTrue(a.getException() instanceof CancellationException); 151 assertSame(t.getClass(), a.getException().getClass()); 360 assertTrue(f.getException() instanceof FJException); 361 checkCompletedAbnormally(f, f.getException()); 437 assertTrue(f.getException() instanceof FJException); 438 checkCompletedAbnormally(f, f.getException());
|
H A D | CountedCompleterTest.java | 52 assertNull(a.getException()); 61 assertNull(a.getException()); 73 assertNull(a.getException()); 88 assertNull(a.getException()); 122 assertTrue(a.getException() instanceof CancellationException); 159 assertSame(t.getClass(), a.getException().getClass()); 745 assertTrue(f.getException() instanceof FJException); 746 checkCompletedAbnormally(f, f.getException()); 818 assertTrue(f.getException() instanceof FJException); 819 checkCompletedAbnormally(f, f.getException()); [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
H A D | Executors.java | 448 throw e.getException(); 501 throw e.getException();
|
H A D | ForkJoinTask.java | 112 * true if the task was cancelled (in which case {@link #getException} 116 * #getException} will return either the encountered exception or 708 * #getException()} and related methods to check if they have been 733 * each task may be obtained using {@link #getException()} and 752 ex = t.getException(); 760 ex = t.getException(); 776 * #getException()} and related methods to check if they have been 803 ex = t.getException(); 811 ex = t.getException(); 885 public final Throwable getException() { method in class:ForkJoinTask [all...] |
/libcore/luni/src/main/java/javax/xml/datatype/ |
H A D | FactoryFinder.java | 309 Exception getException() { method in class:FactoryFinder.ConfigurationError
|
H A D | DatatypeFactory.java | 106 throw new DatatypeConfigurationException(e.getMessage(), e.getException());
|
/libcore/support/src/test/java/tests/resources/ |
H A D | junit4-4.3.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |