Error Page

The errorPage.jsp page is the general error page. It is called by both the FCS and ENOVIA Live Collaboration Server when an error has occurred.

The checkinMCS and checkinMCSStart pages set up the error handling.

<%@ page isErrorPage="true" %>
<%
   String msg = request.getParameter("ErrorMessage");
   if (exception == null) {
      exception = new Exception(msg);
  }
%>
<html>
<head>
<style type="text/css" >
TABLE.error { BACKGROUND-COLOR: #f00}
TH.error {  FONT-WEIGHT: bold; FONT-SIZE: 13px; COLOR: #fff; 
BACKGROUND-COLOR: #f00; TEXT-ALIGN: left}
TD.errMsg { FONT-WEIGHT: bold; FONT-SIZE: 11px; COLOR: #f00; 
BACKGROUND-COLOR: #eee}
</style>
<body bgColor=white>
<img src=images/utilSpace.gif width=1 height=15>
<TABLE class=error cellSpacing=0 cellPadding=1 width="95%" 
border=0 align=center>
  <TBODY>
  <TR>
    <TD>
      <TABLE cellSpacing=0 cellPadding=3 width="100%" border=0>
        <TBODY>
        <TR>
          <TH class=error>FCS error</TH></TR>
        <TR>
          <TD class=errMsg><%=exception.toString()%></TD>
        </TR>
        </TBODY>
      </TABLE>
    </TD>
   </TR>
  </TBODY>
 </TABLE>
<br>
</body>
</html>