Searched defs:Throwable (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DThrowable.java33 * The {@code Throwable} class is the superclass of all errors and
41 * Throwable} and any subclass of {@code Throwable} that is not also a
54 * throwable can {@linkplain Throwable#addSuppressed suppress} other
91 * {@link #initCause(Throwable)} method. New throwable classes that
94 * {@code Throwable} constructors that takes a cause.
99 * {@code Throwable}.
101 * <p>By convention, class {@code Throwable} and its subclasses have two
106 * {@code Throwable} (the cause), and one that takes a
107 * {@code String} (the detail message) and a {@code Throwable} (th
116 public class Throwable implements Serializable { class in inherits:Serializable
242 public Throwable() { method in class:Throwable
257 public Throwable(String message) { method in class:Throwable
279 public Throwable(String message, Throwable cause) { method in class:Throwable
302 public Throwable(Throwable cause) { method in class:Throwable
349 protected Throwable(String message, Throwable cause, method in class:Throwable
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletableFuture.java246 final Throwable ex; // null only for NIL
247 AltResult(Throwable x) { this.ex = x; }
274 static AltResult encodeThrowable(Throwable x) {
280 final boolean completeThrowable(Throwable x) {
292 static Object encodeThrowable(Throwable x, Object r) {
308 final boolean completeThrowable(Throwable x, Object r) {
318 Object encodeOutcome(T t, Throwable x) {
327 Throwable x;
351 Throwable x, cause;
370 Throwable
855 UniExceptionally(CompletableFuture<T> dep, CompletableFuture<T> src, Function<? super Throwable, ? extends T> fn) argument
869 uniExceptionally(CompletableFuture<T> a, Function<? super Throwable, ? extends T> f, UniExceptionally<T> c) argument
[all...]

Completed in 837 milliseconds