<%@ page import="com.sap.slm.web.jnet.DataGenerator" %> <%@ page contentType="text/xml; charset=UTF-8" %> <% /* * @(#)jneterror.xml Created on: May 05, 2004 * * Copyright (c) 2003 SAP AG, * Neurottstr. 16, 69190 Walldorf, Germany * All Rights Reserved. * * The file is used to return errors to JNet. * * @version $Revision$ $Date$ * @author Metodi Mladenov */ %> <% Exception e = (Exception) request.getAttribute(DataGenerator.ATTR_EXCEPTION); String type = e.getClass().getName(); String msg = "Error occured while loading data!"; String htmlMsg = "

The following error occured while retrieving data for graphical presentation:
" + "
Error type: '" + type + "'" + "
Concrete message: '" + e.getMessage() + "'" + "
Please check your configuration or contact the support."; %> ]]>