blob: b8b201c6c7fbd51fd0a02d7399d8842df61b1983 [file] [log] [blame]
public final class Junk
{
public void sillyMethod()
{
String bar = "bar";
try
{
int i = 1;
String foo = "foo";
System.out.println("[" + bar + "|" + i + "|" + foo + "]");
throw new Exception();
}
catch (Exception e)
{
int j = 2;
System.out.println("j = [" + j + "]");
}
finally
{
System.out.println("In finally");
}
}
}