<%@page session="true"%><%@ page import="com.edeal.frontline.navigation.FlRequest" %><%@ page import="com.edeal.frontline.FrontlineException" %><%@ page import="com.edeal.frontline.FrontlineException" %><%@ page import="java.io.PrintWriter" %><%@ page import="java.io.StringWriter" %><%@ page import="com.edeal.frontline.Utils" %><%@ page import="com.edeal.frontline.FailureReport" %><%@ taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %><% FailureReport fReport = (FailureReport)request.getAttribute("FailureReport"); FrontlineException frontlineException = (FrontlineException)request.getAttribute("FrontlineException"); String errorMessage = (frontlineException == null ? null : frontlineException.getMessage()); if (errorMessage == null) { errorMessage = "Non saisi - Not available"; } String stack = null; PrintWriter pwOut = null; StringWriter outString = null; try { outString = new StringWriter(); pwOut = new PrintWriter(outString, true); frontlineException.printStackTrace(pwOut); } catch (Exception ex) { } finally { try { pwOut.close(); } catch (Exception ex) {} try { outString.close(); } catch (Exception ex) {} if (outString != null) { stack = outString.toString(); } if (stack == null) { stack = ""; } } session.setAttribute("LastStackTrace", stack); %> <% if (frontlineException == null) { %> Exception pas disponible
No Exception given
<% } else { %> Erreur lors de la création de la population.
An error occured while creating the population.

Type d'exception - Exception type:<%= frontlineException.getClass().getName() %>
Message d'exception - Exception message:<%= errorMessage %>
<% if (fReport != null) { %>


<%= fReport.getStack() %> <% } %> <% } %>