1 19 20 package org.netbeans.api.debugger.jpda.testapps; 21 22 27 public class ExceptionBreakpointApp { 28 29 public static void main(String [] args) { 30 ExceptionBreakpointApp sa = new ExceptionBreakpointApp(); 31 sa.run(); 32 } 33 34 private void run() { 35 try { 36 throw new ExceptionTestException(); 37 } catch (ExceptionTestException e) { 38 System.currentTimeMillis(); 39 } 40 } 41 42 } 43 | Popular Tags |