1 public class ExceptionTest {2 3 public static void main(String [] args) {4 try {5 throw new Exception ();6 7 }8 catch (Exception e) {9 throw e;10 }11 finally {12 return;13 }14 }15 }16