Lines Matching refs:exception
65 private static String getInfo(Object m, boolean exception, Object result) { in getInfo() argument
67 if (exception) { in getInfo()
77 public void methodExited(Object m, boolean exception, Object result); in methodExited() argument
88 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
90 System.out.println("Normal: Leaving " + getInfo(m, exception, result)); in methodExited()
102 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
104 System.out.println("ThrowEnter: Leaving " + getInfo(m, exception, result)); in methodExited()
116 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
121 System.out.println("ThrowExit: Leaving " + getInfo(m, exception, result)); in methodExited()
122 throw new ErrorB("Throwing error while exit " + getInfo(m, exception, result)); in methodExited()
135 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
140 System.out.println("ThrowBoth: Leaving " + getInfo(m, exception, result)); in methodExited()
141 throw new ErrorC("Throwing error while exit " + getInfo(m, exception, result)); in methodExited()
155 public void methodExited(Object m, boolean exception, Object result) { in methodExited() argument
172 public static void baseNotifyMethodExit(Object o, boolean exception, Object res) { in baseNotifyMethodExit() argument
173 currentTracer.methodExited(o, exception, res); in baseNotifyMethodExit()