}
assertMsg.append("*** Stack Trace *** \n");
exceptionToString(assertMsg, exception);
if (exception instanceof ActionException) {
ActionException actionException = (ActionException) exception;
if (actionException.getTargetException() != null) {
assertMsg.append("*** Target Exception *** \n");
exceptionToString(assertMsg, actionException.getTargetException());
}
}
if (msg == null || "".equals(msg)) {
msg = "Exception";