⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fun_error.jsp

📁 java 写的一个新闻发布系统
💻 JSP
字号:
<%@ page language="java" %><%@ page import="java.util.*" %><% String message = (String) request.getAttribute("org.jahia.exception.Message");   String stackTrace = (String) request.getAttribute("org.jahia.exception.StackTrace");   String rootCause = (String) request.getAttribute("org.jahia.exception.RootCause");%><HTML>    <HEAD>        <TITLE>            Jahia Error -------------------------------&gt; (c) 2001 Safj, Loom, Mik &lt;---------------------------------        </TITLE>    </HEAD>    <BODY bgcolor="blue" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">        <table border="0" cellpadding="3" cellspacing="0" width="100%" bgcolor="#FF00FF">            <tr bgcolor="#FF0000">                <td colspan="2" align="center" valign="middle">                    <table border="0" cellpadding="0" cellspacing="0">                    <tr>                        <td><pre>                                ____.                    __/\ ______|    |__/\.     _______         __   .____|    |       \   |    +----+       \ _______|  /--|    |    |    -   \  _    |    :    -   \_________\\______: :---|    :    :           |    :    |         \________>        |__\---\_____________:______:    :____|____:_____\                                   /_____|            . . . i n   j a h i a   w e   t r u s t . . .</pre>                        </td>                    </tr>                    </table>                <font size="5">E R R O R</font>                </td>            </tr>            <tr bgcolor="#00FF00">                <td colspan="2" align="center">                    <table border="0" cellpadding="0" cellspacing="0">                        <tr>                            <td>                                <h1>Lost on Jahia ?</h1>                                <h2>Don't worry, we'll help you !</h2>                                <h2>&nbsp;&nbsp;&nbsp;&nbsp; * &lt;---- You are here </h2>                            </td>                        </tr>                    </table>                </td>            <tr>                <td colspan="2">An error has occured during processing. Please consult the information below for more details</td>            </tr>            <tr valign="top">                <td><b>Exception : </b></td>                <td><%=message %></td>            </tr>            <% if (stackTrace != null) { %>              <tr valign="top" >                <td><b>Stack trace for the exception : </b></td>                <td><blink><pre><%=stackTrace %></pre></blink></td>              </tr>            <% } %>            <% if (rootCause != null) { %>              <tr valign="top">                <td><b>A servlet caused an exception, here is the stack trace : </b></td>                <td><blink><pre><%=rootCause %></pre></blink></td>              </tr>            <% } %>            <tr bgcolor="yellow" >                <td colspan="2">                    <br>                    <center><i>A crash reduces your expensive computer to a simple stone.</i></center>                    <br>                    <center>You're missing something if you're not viewing this with Netscape. Trust me. Hmpf.</center>                    <br>                </td>            </tr>        </table>    </BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -