} catch (Exception e) {
if (this.exceptionsList.contains(e.getClass())) {
Object action = invocation.getAction();
if (action instanceof ValidationAware) {
ValidationAware va = (ValidationAware) action;
va.addActionError(e.getMessage());
}
this.log.warn(e.getMessage(), e);
return Struts2Constants.ERROR;
}
throw e;