Package evolaris.framework.sys.business.exception

Examples of evolaris.framework.sys.business.exception.InteractionException


   */
  @Override
  public ActionForward execute(Exception exception, ExceptionConfig arg1, ActionMapping mapping, ActionForm arg3, HttpServletRequest req, HttpServletResponse arg5) throws ServletException {
    String userName = req.getUserPrincipal() == null ? "`ANONYMOUS USER`" : req.getUserPrincipal().getName().toLowerCase();       
    correctStrutsLocale(req);
    InteractionException e = (InteractionException) exception;
    e.generalLog(userName);
    req.setAttribute("userMessage",e.getUserMessage());
    req.setAttribute("position", e.getPosition());
    return mapping.findForward("interactionErrorPage");
  }
View Full Code Here

TOP

Related Classes of evolaris.framework.sys.business.exception.InteractionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.