Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0-beta-10
-
Component/s: None
-
Labels:None
-
Environment:Version: 1.0-beta-6-SNAPSHOT JVM: 1.5.0-beta2-b51
-
Number of attachments :
Description
code
===
import java.io.*;
def g() {
throw new IOException();
}
try {
g();
} catch (IOException e) {
println "caught";
}
==
should print "caught", prints long stack trace :-/
another bug basing on wrapped exceptions, but this should be fixed now