mirror of https://gitee.com/jeecg/jeecg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
13 lines
364 B
<%@ page contentType="text/html; charset=UTF-8"%>
|
|
<html>
|
|
<head><title>Exception!</title></head>
|
|
<body>
|
|
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
|
<H2>错误异常: <%= e.getClass().getSimpleName()%></H2>
|
|
<hr />
|
|
<P>错误描述:</P>
|
|
<%= e.getMessage()%>
|
|
<P>错误信息:</P>
|
|
<% e.printStackTrace(new java.io.PrintWriter(out)); %>
|
|
</body>
|
|
</html> |