/* * Test1.java * * Created on September 10, 2001, 12:45 PM */ package OWtest; /** * * @author lh116728 */ public class Test1 { /** Creates new Test1 */ public Test1() { } /** * @param args the command line arguments */ public static void main(String args[]) throws Exception{ try{ throw new Exception("first exception"); }catch(Exception e1) { System.out.println("exception : " + e1.getMessage()); e1.printStackTrace(); } throw new Exception("second exception"); } }