Lines Matching refs:e
35 for (StackTrace.StackFrameData e : StackTrace.GetStackTrace(Thread.currentThread())) { in PrintStack()
36 if (Objects.equals(e.method.getDeclaringClass().getPackage(), Test1928.class.getPackage())) { in PrintStack()
37 System.out.println("\t\t" + e.method + " @ line = " + in PrintStack()
38 Breakpoint.locationToLine(e.method, e.current_location)); in PrintStack()
72 public BaseTestException(String e) { super(e); } in BaseTestException() argument
73 public BaseTestException(String e, Throwable t) { super(e, t); } in BaseTestException() argument
76 public TestException(String e) { super(e); } in TestException() argument
77 public TestException(String e, Throwable t) { super(e, t); } in TestException() argument
81 public TestExceptionNoRethrow(String e) { super(e); } in TestExceptionNoRethrow() argument
82 public TestExceptionNoRethrow(String e, Throwable t) { super(e, t); } in TestExceptionNoRethrow() argument
199 } catch (Throwable e) { in run()
202 e.getClass().getName(), in run()
203 e.getMessage(), in run()
206 e.printStackTrace(System.out); in run()