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

/frameworks/base/core/java/android/server/data/
H A DThrowableData.java26 public class ThrowableData { class
31 final ThrowableData cause;
33 public ThrowableData(Throwable throwable) { method in class:ThrowableData
45 this.cause = cause == null ? null : new ThrowableData(cause);
48 public ThrowableData(DataInput in) throws IOException { method in class:ThrowableData
63 this.cause = in.readBoolean() ? new ThrowableData(in) : null;
95 public ThrowableData getCause() {
111 ThrowableData throwableData) {
131 ThrowableData cause = throwableData.getCause();

Completed in 51 milliseconds