Lines Matching refs:t
73 public BaseTestException(String e, Throwable t) { super(e, t); } in BaseTestException() argument
77 public TestException(String e, Throwable t) { super(e, t); } in TestException() argument
82 public TestExceptionNoRethrow(String e, Throwable t) { super(e, t); } in TestExceptionNoRethrow() argument
100 } catch (BaseTestException t) { in exceptionOccurred()
101 System.out.println("Caught " + t.getClass().getName() + ": \"" + t.getMessage() + "\""); in exceptionOccurred()
103 t.printStackTrace(System.out); in exceptionOccurred()
120 } catch (BaseTestException t) { in throwCatchBaseTestException()
121 System.out.println("Caught " + t.getClass().getName() + ": \"" + t.getMessage() + "\""); in throwCatchBaseTestException()
123 t.printStackTrace(System.out); in throwCatchBaseTestException()
135 } catch (TestException t) { in throwCatchTestException()
136 System.out.println("Caught " + t.getClass().getName() + ": \"" + t.getMessage() + "\""); in throwCatchTestException()
138 t.printStackTrace(System.out); in throwCatchTestException()
150 } catch (TestExceptionNoRethrow t) { in throwCatchTestExceptionNoRethrow()
151 System.out.println("Caught " + t.getClass().getName() + ": \"" + t.getMessage() + "\""); in throwCatchTestExceptionNoRethrow()
153 t.printStackTrace(System.out); in throwCatchTestExceptionNoRethrow()