Searched refs:BaseTestException (Results 1 – 4 of 4) sorted by relevance
/art/test/1928-exception-event-exception/src/art/ |
D | Test1928.java | 71 public static class BaseTestException extends Error { class in Test1928 72 public BaseTestException(String e) { super(e); } in BaseTestException() method in Test1928.BaseTestException 73 public BaseTestException(String e, Throwable t) { super(e, t); } in BaseTestException() method in Test1928.BaseTestException 75 public static class TestException extends BaseTestException { 98 throw new BaseTestException("ThrowBaseHandler during throw from " + m + " @ line = " + in exceptionOccurred() 100 } catch (BaseTestException t) { in exceptionOccurred() 120 } catch (BaseTestException t) { in throwCatchBaseTestException()
|
/art/test/1929-exception-catch-exception/src/art/ |
D | Test1929.java | 75 public static class BaseTestException extends Error { class in Test1929 76 public BaseTestException(String e) { super(e); } in BaseTestException() method in Test1929.BaseTestException 77 public BaseTestException(String e, Throwable t) { super(e, t); } in BaseTestException() method in Test1929.BaseTestException 79 public static class TestException extends BaseTestException { 100 throw new BaseTestException("ThrowBaseHandler during throw from " + m + " @ line = " + in exceptionOccurred() 102 } catch (BaseTestException t) { in exceptionOccurred() 113 throw new BaseTestException("ThrowBaseHandler during throw from " + m + " @ line = " + in exceptionOccurred() 140 } catch (BaseTestException t) { in throwCatchBaseTestException()
|
/art/test/1929-exception-catch-exception/smali/art/ |
D | Test1929$Impl.smali | 61 .catch Lart/Test1929$BaseTestException; {:try_start_0 .. :try_end_8} :catch_8 70 .local v0, "t":Lart/Test1929$BaseTestException; 101 invoke-virtual {v0}, Lart/Test1929$BaseTestException;->getMessage()Ljava/lang/String; 129 … invoke-virtual {v0, v1}, Lart/Test1929$BaseTestException;->printStackTrace(Ljava/io/PrintStream;)V 131 .catch Lart/Test1929$BaseTestException; {:try_start_9 .. :try_end_46} :catch_47 173 invoke-virtual {v0}, Lart/Test1929$BaseTestException;->getMessage()Ljava/lang/String; 201 … invoke-virtual {v0, v1}, Lart/Test1929$BaseTestException;->printStackTrace(Ljava/io/PrintStream;)V
|
/art/test/1929-exception-catch-exception/ |
D | expected.txt | 97 Throwing BaseTestException and catching it! 98 Caught art.Test1929$BaseTestException: "ThrowBaseHandler during throw from public static void art.T… 126 Throwing BaseTestException and catching it! 127 Caught art.Test1929$BaseTestException: "ThrowBaseHandler during throw from public static void art.T… 175 Throwing BaseTestException! 176 Test "art.Test1929$DoThrowCatchBaseTestException": Caught error art.Test1929$BaseTestException:"Thr… 202 Throwing BaseTestException! 203 Test "art.Test1929$DoThrowCatchTestException": Caught error art.Test1929$BaseTestException:"ThrowBa…
|