Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1044 → Rev 1045

/hostadmiral/trunk/src/ak/hostadmiral/core/action/GeneralExceptionHandler.java
80,6 → 80,8
{
logger.info("user exception handle:" + ex.getMessage());
 
request.setAttribute("TRANSACTION_FAILED", Boolean.TRUE);
 
// try to get property for this exception if any
String property = ActionMessages.GLOBAL_MESSAGE;
if(ex instanceof FormException) {
110,6 → 112,8
{
logger.info("model user exception handle:" + ex.getMessage());
 
request.setAttribute("TRANSACTION_FAILED", Boolean.TRUE);
 
// create new error message
ActionErrors errors = (ActionErrors)request.getAttribute(Globals.ERROR_KEY);
if(errors == null) {