Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Version: 1.0-beta-6-SNAPSHOT JVM: 1.5.0-beta2-b51
Description
code
===
import java.io.*;
def g() {
throw new IOException();
}
try {
g();
} catch (IOException e) {
println "caught";
}
==
should print "caught", prints long stack trace :-/