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

/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DThrowable.java30 * circumstances in which the {@code Throwable} was created (basically an error
34 * A {@code Throwable} can also include a cause, which is a nested {@code
35 * Throwable} that represents the original problem that led to this {@code
36 * Throwable}. It is often used for wrapping various types of errors into a
37 * common {@code Throwable} without losing the detailed original error
47 public class Throwable implements java.io.Serializable { class in inherits:java.io.Serializable
56 * The cause of this Throwable. Null when there is no cause.
58 private Throwable cause = this;
74 * Constructs a new {@code Throwable} that includes the current stack trace.
78 public Throwable() { method in class:Throwable
91 public Throwable(String detailMessage) { method in class:Throwable
106 public Throwable(String detailMessage, Throwable throwable) { method in class:Throwable
120 public Throwable(Throwable throwable) { method in class:Throwable
[all...]

Completed in 56 milliseconds