Searched refs:Throwable (Results 1 - 25 of 1141) sorted by relevance

1234567891011>>

/libcore/dom/src/test/java/org/w3c/domts/
H A DJunitTestCases.java27 private void runDomTest(String name) throws Throwable {
33 public void test_level1_core_attrcreatedocumentfragment() throws Throwable {
37 public void test_level1_core_attrcreatetextnode() throws Throwable {
41 public void test_level1_core_attrcreatetextnode2() throws Throwable {
45 public void test_level1_core_attreffectivevalue() throws Throwable {
49 public void test_level1_core_attrname() throws Throwable {
53 public void test_level1_core_attrnextsiblingnull() throws Throwable {
57 public void test_level1_core_attrparentnodenull() throws Throwable {
61 public void test_level1_core_attrprevioussiblingnull() throws Throwable {
65 public void test_level1_core_attrspecifiedvalue() throws Throwable {
[all...]
H A DDOMTestLoadException.java24 private final Throwable innerException;
30 public DOMTestLoadException(Throwable innerException) {
/libcore/luni/src/main/java/java/lang/
H A DClassNotFoundException.java27 private Throwable ex;
34 super((Throwable) null);
58 public ClassNotFoundException(String detailMessage, Throwable exception) {
66 * @return Throwable the exception which occurred while loading the class.
68 public Throwable getException() {
73 * Returns the cause of this Throwable, or {@code null} if there is no
76 * @return Throwable the receiver's cause.
79 public Throwable getCause() {
H A DExceptionInInitializerError.java27 private Throwable exception;
57 public ExceptionInInitializerError(Throwable exception) {
67 public Throwable getException() {
77 public Throwable getCause() {
H A DError.java26 * @see Throwable
30 public class Error extends Throwable {
60 public Error(String detailMessage, Throwable throwable) {
71 public Error(Throwable throwable) {
H A DException.java26 * @see Throwable
30 public class Exception extends Throwable {
59 public Exception(String detailMessage, Throwable throwable) {
70 public Exception(Throwable throwable) {
H A DIllegalArgumentException.java56 public IllegalArgumentException(String message, Throwable cause) {
68 public IllegalArgumentException(Throwable cause) {
H A DIllegalStateException.java56 public IllegalStateException(String message, Throwable cause) {
68 public IllegalStateException(Throwable cause) {
H A DReflectiveOperationException.java43 public ReflectiveOperationException(Throwable cause) {
50 public ReflectiveOperationException(String message, Throwable cause) {
H A DRuntimeException.java58 public RuntimeException(String detailMessage, Throwable throwable) {
69 public RuntimeException(Throwable throwable) {
H A DSecurityException.java55 public SecurityException(String message, Throwable cause) {
67 public SecurityException(Throwable cause) {
/libcore/luni/src/main/java/libcore/util/
H A DSneakyThrow.java29 * Throwable thrown = null;
47 * Throwable thrown = null;
58 public static void sneakyThrow(Throwable t) {
67 private static <T extends Throwable> void sneakyThrow2(Throwable t) throws T {
/libcore/luni/src/main/java/java/lang/reflect/
H A DInvocationTargetException.java31 private Throwable target;
38 super((Throwable) null);
49 public InvocationTargetException(Throwable exception) {
64 public InvocationTargetException(Throwable exception, String detailMessage) {
74 public Throwable getTargetException() {
84 public Throwable getCause() {
H A DUndeclaredThrowableException.java30 private Throwable undeclaredThrowable;
39 public UndeclaredThrowableException(Throwable exception) {
53 public UndeclaredThrowableException(Throwable exception,
66 public Throwable getUndeclaredThrowable() {
77 public Throwable getCause() {
H A DInvocationHandler.java32 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
53 * @throws Throwable
59 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
/libcore/luni/src/test/java/libcore/java/lang/
H A DThrowableTest.java28 public synchronized Throwable fillInStackTrace() {
45 } catch (Throwable th) {
64 private static class SuppressionsThrowable extends Throwable {
67 public SuppressionsThrowable(String detailMessage, Throwable throwable,
74 Throwable throwable = new Throwable();
76 Throwable suppressedA = new Throwable();
79 Throwable suppressedB = new Throwable();
[all...]
H A DOldThrowableTest.java26 Throwable thr = new Throwable(message, npe);
30 thr = new Throwable(null, npe);
34 thr = new Throwable(message, null);
42 Throwable thr = new Throwable(npe);
46 thr = new Throwable((Throwable) null);
52 Throwable e = new Throwable(testMessag
[all...]
/libcore/luni/src/main/java/java/io/
H A DIOError.java34 public IOError(Throwable cause) {
H A DIOException.java57 public IOException(String message, Throwable cause) {
68 public IOException(Throwable cause) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DIOExceptionTest.java56 *java.lang.Throwable)
60 // Test for constructor java.io.IOException(java.lang.String, java.lang.Throwable)
63 "A dummy IOException", new Throwable("A dummy Throwable")); //$NON-NLS-1$//$NON-NLS-2$
68 "A dummy error", new Throwable("Some error message")); //$NON-NLS-1$ //$NON-NLS-2$
78 * java.io.IOException#IOException(java.lang.Throwable)
82 // Test for constructor java.io.IOException(java.lang.Throwable)
83 Throwable cause = new Throwable("A dummy Throwable"); //
[all...]
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformerConfigurationException.java52 public TransformerConfigurationException(Throwable e) {
64 public TransformerConfigurationException(String msg, Throwable e) {
93 Throwable e) {
/libcore/dex/src/main/java/com/android/dex/
H A DDexIndexOverflowException.java27 public DexIndexOverflowException(Throwable cause) {
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinWorkerThread.java96 protected void onTermination(Throwable exception) {
105 Throwable exception = null;
109 } catch (Throwable ex) {
114 } catch (Throwable ex) {
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DMalformedHprofException.java28 MalformedHprofException(String message, Throwable cause) {
31 MalformedHprofException(Throwable cause) {
/libcore/libart/src/main/java/dalvik/system/
H A DTransactionAbortError.java48 private TransactionAbortError(String message, Throwable cause) {
58 private TransactionAbortError(Throwable cause) {

Completed in 676 milliseconds

1234567891011>>