Searched defs:throwable (Results 1 - 15 of 15) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/lang/
H A DError.java62 * @param throwable
66 public Error(String detailMessage, Throwable throwable) { argument
67 super(detailMessage, throwable);
74 * @param throwable
78 public Error(Throwable throwable) { argument
79 super(throwable);
H A DException.java61 * @param throwable
65 public Exception(String detailMessage, Throwable throwable) { argument
66 super(detailMessage, throwable);
73 * @param throwable
77 public Exception(Throwable throwable) { argument
78 super(throwable);
H A DRuntimeException.java61 * @param throwable
65 public RuntimeException(String detailMessage, Throwable throwable) { argument
66 super(detailMessage, throwable);
73 * @param throwable
77 public RuntimeException(Throwable throwable) { argument
78 super(throwable);
H A DVMThread.java84 void stop(Throwable throwable) { argument
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DNotImplementedException.java83 * @param throwable
85 public NotImplementedException(String detailMessage, Throwable throwable) { argument
86 super(detailMessage, throwable);
92 * @param throwable
94 public NotImplementedException(Throwable throwable) { argument
95 super(throwable);
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/
H A DLocalizedException.java27 * @param throwable the cause
29 public LocalizedException(ErrorBundle message, Throwable throwable) argument
33 this.cause = throwable;
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
H A DCertPathReviewerException.java15 public CertPathReviewerException(ErrorBundle errorMessage, Throwable throwable) argument
17 super(errorMessage, throwable);
27 Throwable throwable,
31 super(errorMessage, throwable);
25 CertPathReviewerException( ErrorBundle errorMessage, Throwable throwable, CertPath certPath, int index) argument
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DCoreTestIsolator.java95 private static void saveStackTrace(Throwable throwable, String fileName) { argument
100 oos.writeObject(throwable);
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DUndeclaredThrowableExceptionTests.java16 private static EOFException throwable = new EOFException(); field in class:UndeclaredThrowableExceptionTests
29 throwable);
30 assertSame("Wrong cause returned", throwable, ute.getCause());
44 throwable);
45 assertSame("Wrong undeclared throwable returned", throwable, ute
60 throwable);
61 assertEquals("Wrong cause returned", throwable, e.getCause());
62 assertEquals("Wrong throwable returned", throwable,
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThrowable.java102 * @param throwable
106 public Throwable(String detailMessage, Throwable throwable) { argument
109 cause = throwable;
116 * @param throwable
120 public Throwable(Throwable throwable) { argument
122 this.detailMessage = throwable == null ? null : throwable.toString();
123 cause = throwable;
283 Throwable throwable = getCause();
284 while (throwable !
361 initCause(Throwable throwable) argument
[all...]
H A DThread.java1313 * <code>throwable()</code>. The Thread is resumed if it was suspended
1315 * <code>throwable()</code>.
1317 * @param throwable Throwable object to be thrown by the Thread
1320 * @throws NullPointerException if <code>throwable()</code> is
1328 public final synchronized void stop(Throwable throwable) { argument
1337 if (throwable == null) {
1343 vmt.stop(throwable);
/dalvik/vm/
H A DException.c400 * takes a throwable. If we can't find one, we fall back on calling
705 ClassObject* throwable = local
707 if (throwable == NULL) {
735 throwable = dvmResolveClass(method->clazz, handler->typeIdx,
737 if (throwable == NULL) {
758 if (dvmInstanceof(excepClass, throwable)) {
H A DThread.c1514 ClassObject* throwable; local
/dalvik/vm/reflect/
H A DProxy.c46 static bool mustWrapException(const Method* method, const Object* throwable);
288 * We also allocate an array of arrays of throwable classes, one for each
648 * Create a local array with a copy of the throwable classes declared by
733 /* mix is a subclass of a declared throwable, keep it */
1054 static bool mustWrapException(const Method* method, const Object* throwable) argument
1061 if (!dvmIsCheckedException(throwable))
1088 if (dvmInstanceof(throwable->clazz, classes[i])) {
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 3304 milliseconds