For some reason IDEA Run window doesn't correctly parse stack trace entries of an
exception where the entry classname contains the '$' character. IDEA just does not
provide that convinient underlined link to a point in a file where the exception has
happened. The behaviour is pretty easy to reproduce:
public class AAA$ {
public static void main(String[] args) throws Exception {
throw new Exception();
}
}
If you run this program you'll see something like this:
java.lang.Exception
at AAA$.main(AAA$.java:11)
Exception in thread "main" Process terminated with exit code 1
Note that (AAA$.java:11) is not underlined.
Now remove the '$' character from the class name and everything will work correctly.
_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs