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