1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Finally4 39 { 40 static int j = 1; 41 public static void main( String [] args ) 42 { 43 try 44 { 45 try 46 { 47 throw new Exception (); 48 } 49 catch (IllegalArgumentException ex) 50 { 51 System.out.println("2"); 52 } 53 finally 54 { 55 System.out.println("a"); 56 Passed.passed( "Finally4" ); 57 System.out.println("b"); 58 } 59 } 60 catch (Exception ex) 61 { 62 System.out.println("2"); 63 return; 64 } 65 } 66 } 67 68 | Popular Tags |