/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Academic is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>. */ /* * Created on 25/Fev/2003 * * */ package org.fenixedu.academic.ui.struts.config; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.Globals; import org.apache.struts.action.ActionError; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.apache.struts.action.ActionMessage; import org.apache.struts.action.ExceptionHandler; import org.apache.struts.config.ExceptionConfig; import org.fenixedu.academic.ui.struts.action.exceptions.FenixActionException; /** * @author João Mota */ public class FenixExceptionHandler extends ExceptionHandler { /** * Handle the exception. Return the <code>ActionForward</code> instance (if * any) returned by the called <code>ExceptionHandler</code>. * * @param ex * The exception to handle * @param ae * The ExceptionConfig corresponding to the exception * @param mapping * The ActionMapping we are processing * @param formInstance * The ActionForm we are processing * @param request * The servlet request we are processing * @param response * The servlet response we are creating * * @exception ServletException * if a servlet exception occurs * * @since Struts 1.1 */ @Override public ActionForward execute(Exception ex, ExceptionConfig ae, ActionMapping mapping, ActionForm formInstance, HttpServletRequest request, HttpServletResponse response) throws ServletException { // Figure out the error ActionMessage error; String property; if (ex instanceof FenixActionException) { error = ((FenixActionException) ex).getError(); property = ((FenixActionException) ex).getProperty(); } else { error = new ActionError(ae.getKey(), ex.getMessage()); property = error.getKey(); } // Store the exception request.setAttribute(Globals.EXCEPTION_KEY, ex); super.storeException(request, property, error, null, ae.getScope()); return super.execute(ex, ae, mapping, formInstance, request, response); } }