Home
last modified time | relevance | path

Searched refs:TestExceptionNoRethrow (Results 1 – 3 of 3) sorted by relevance

/art/test/1929-exception-catch-exception/src/art/
DTest1929.java84 public static class TestExceptionNoRethrow extends TestException { class in Test1929
85 public TestExceptionNoRethrow(String e) { super(e); } in TestExceptionNoRethrow() method in Test1929.TestExceptionNoRethrow
86 public TestExceptionNoRethrow(String e, Throwable t) { super(e, t); } in TestExceptionNoRethrow() method in Test1929.TestExceptionNoRethrow
120 if (exception instanceof TestExceptionNoRethrow) { in exceptionOccurred()
124 throw new TestExceptionNoRethrow("ThrowTestExceptionNoRethrowHandler during throw from " + in exceptionOccurred()
247 } catch (TestExceptionNoRethrow t) { in throwCatchTestExceptionNoRethrow()
/art/test/1928-exception-event-exception/src/art/
DTest1928.java80 public static class TestExceptionNoRethrow extends TestException { class in Test1928
81 public TestExceptionNoRethrow(String e) { super(e); } in TestExceptionNoRethrow() method in Test1928.TestExceptionNoRethrow
82 public TestExceptionNoRethrow(String e, Throwable t) { super(e, t); } in TestExceptionNoRethrow() method in Test1928.TestExceptionNoRethrow
150 } catch (TestExceptionNoRethrow t) { in throwCatchTestExceptionNoRethrow()
/art/test/1929-exception-catch-exception/
Dexpected.txt249 Throwing TestExceptionNoRethrow!
250 Test "art.Test1929$DoThrowCatchBaseTestException": Caught error art.Test1929$TestExceptionNoRethrow
276 Throwing TestExceptionNoRethrow!
277 Test "art.Test1929$DoThrowCatchTestException": Caught error art.Test1929$TestExceptionNoRethrow:"Th…