public class Finally3{
public static void main(String[] args){
try{
throw new RuntimeException("boom");
}
catch (RuntimeException e){
System.out.println("I got it!");
}
finally{ System.out.println("finally"); }
System.out.println(
"Exception, what exception?");
}
}