*/
private void command_showStackTrace (String info) {
if (runThread == null || runThread.getError() == null) {
iceLogger.log(Level.INFO, "There is no error stack trace to display.");
} else {
CALExecutorException e = runThread.getError ();
if (e.getCause() != null) {
e.getCause().printStackTrace(outputStream);
} else {
e.printStackTrace(outputStream);
}
iceLogger.log(Level.INFO, "");
}
}