1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Finally1 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("1"); 50 } 51 finally 52 { 53 System.out.println("a"); 54 Passed.passed( "Finally1" ); 55 System.out.println("b"); 56 } 57 } 58 } 59 60 | Popular Tags |