<%@page session="true"%><%@ page import="com.edeal.frontline.navigation.FlRequest" %><%@ page import="com.edeal.frontline.AccessDeniedException" %><%@ 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"); AccessDeniedException accessDeniedException = (AccessDeniedException)request.getAttribute("AccessDeniedException"); String errorMessage = (accessDeniedException == null ? null : accessDeniedException.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); accessDeniedException.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 (accessDeniedException == null) { %> Exception pas disponible
No Exception given
<% } else { %> Impossible de créer la population.
Population could not be created.

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


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