Description
This script should generate a complete stacktrace including the call to "doSomething()" and the message, but it only writes "This script or class was runnable but cold not be run."
public class Foo implements Runnable { public Foo() { doSomething(); } public void run() { println("B"); } public doSomething() { println("A"); throw new Exception("A specific Error Message"); } }