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

/libcore/luni/src/main/java/java/lang/
H A DError.java57 * @param throwable
60 public Error(String detailMessage, Throwable throwable) { argument
61 super(detailMessage, throwable);
68 * @param throwable
71 public Error(Throwable throwable) { argument
72 super(throwable);
H A DException.java56 * @param throwable
59 public Exception(String detailMessage, Throwable throwable) { argument
60 super(detailMessage, throwable);
67 * @param throwable
70 public Exception(Throwable throwable) { argument
71 super(throwable);
H A DRuntimeException.java55 * @param throwable
58 public RuntimeException(String detailMessage, Throwable throwable) { argument
59 super(detailMessage, throwable);
66 * @param throwable
69 public RuntimeException(Throwable throwable) { argument
70 super(throwable);
H A DThrowable.java64 * Throwables suppressed by this throwable. Null when suppressed exceptions
338 for (Throwable throwable : suppressedExceptions) {
341 throwable.printStackTrace(err, indent + "\t", stack);
367 * @param throwable
375 public Throwable initCause(Throwable throwable) { argument
379 if (throwable == this) {
380 throw new IllegalArgumentException("throwable == this");
382 cause = throwable;
398 * Adds {@code throwable} to the list of throwables suppressed by this. The
399 * throwable wil
405 addSuppressed(Throwable throwable) argument
[all...]
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DUndeclaredThrowableExceptionTests.java10 private static EOFException throwable = new EOFException(); field in class:UndeclaredThrowableExceptionTests
17 throwable);
18 assertSame("Wrong cause returned", throwable, ute.getCause());
26 throwable);
27 assertSame("Wrong undeclared throwable returned", throwable, ute
36 throwable);
37 assertEquals("Wrong cause returned", throwable, e.getCause());
38 assertEquals("Wrong throwable returned", throwable,
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DThrowableTest.java67 public SuppressionsThrowable(String detailMessage, Throwable throwable, argument
69 super(detailMessage, throwable, enableSuppression, writableStackTrace);
74 Throwable throwable = new Throwable();
75 assertSuppressed(throwable);
77 throwable.addSuppressed(suppressedA);
78 assertSuppressed(throwable, suppressedA);
80 throwable.addSuppressed(suppressedB);
81 assertSuppressed(throwable, suppressedA, suppressedB);
85 Throwable throwable = new Throwable();
87 throwable
318 assertSerialized(final Throwable throwable, String golden) argument
338 printStackTraceToString(Throwable throwable) argument
344 assertSuppressed(Throwable throwable, Throwable... expectedSuppressed) argument
[all...]
/libcore/libart/src/main/java/java/lang/
H A DThread.java1066 public final synchronized void stop(Throwable throwable) { argument
/libcore/libdvm/src/main/java/java/lang/
H A DThread.java1051 public final synchronized void stop(Throwable throwable) { argument
/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/ ...
/libcore/benchmarks/libs/
H A Dcaliper.jar ... 2_r1/s?defs= " (java.lang.Throwable) Throwable cause } com/google/caliper/ConfiguredBenchmark.class ConfiguredBenchmark. ...

Completed in 277 milliseconds