Home
last modified time | relevance | path

Searched defs:throwable (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DThrowableTest.java42 public SuppressionsThrowable(String detailMessage, Throwable throwable, in SuppressionsThrowable()
49 Throwable throwable = new Throwable(); in testAddSuppressed() local
60 Throwable throwable = new Throwable(); in testAddDuplicateSuppressed() local
69 Throwable throwable = new Throwable(); in testGetSuppressedReturnsCopy() local
81 Throwable throwable = new SuppressionsThrowable("foo", null, false); in testAddSuppressedWithSuppressionDisabled() local
90 Throwable throwable = new Throwable(); in testAddSuppressedSelf() local
99 Throwable throwable = new Throwable(); in testAddSuppressedNull() local
108 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCause() local
121 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCauseAndSuppressed() local
144 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithEverything() local
[all …]
/libcore/luni/src/main/java/java/lang/
DError.java60 public Error(String detailMessage, Throwable throwable) { in Error()
71 public Error(Throwable throwable) { in Error()
DRuntimeException.java58 public RuntimeException(String detailMessage, Throwable throwable) { in RuntimeException()
69 public RuntimeException(Throwable throwable) { in RuntimeException()
DException.java59 public Exception(String detailMessage, Throwable throwable) { in Exception()
70 public Exception(Throwable throwable) { in Exception()
DThrowable.java107 public Throwable(String detailMessage, Throwable throwable) { in Throwable() method in Throwable
120 public Throwable(Throwable throwable) { in Throwable() method in Throwable
135 protected Throwable(String detailMessage, Throwable throwable, boolean enableSuppression) { in Throwable() method in Throwable
380 public Throwable initCause(Throwable throwable) { in initCause()
413 public final void addSuppressed(Throwable throwable) { in addSuppressed()
DThread.java1075 public final synchronized void stop(Throwable throwable) { in stop()
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
DUndeclaredThrowableExceptionTests.java10 private static EOFException throwable = new EOFException(); field in UndeclaredThrowableExceptionTests