1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Finally5 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 } 54 catch (Throwable ex) 55 { 56 System.out.println("2"); 57 return; 58 } 59 finally 60 { 61 System.out.println("a"); 62 Passed.passed( "Finally5" ); 63 System.out.println("b"); 64 } 65 } 66 } 67 68 | Popular Tags |