mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
6f23804845
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1073268 13f79535-47bb-0310-9956-ffa450edef68
15 lines
337 B
Plaintext
15 lines
337 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<%@ taglib prefix="s" uri="/struts-tags" %>
|
|
|
|
<html>
|
|
<head><title>Simple jsp page</title></head>
|
|
<body>
|
|
<h3>Exception:</h3>
|
|
<s:property value="exception"/>
|
|
|
|
<h3>Stack trace:</h3>
|
|
<pre>
|
|
<s:property value="exceptionStack"/>
|
|
</pre>
|
|
</body>
|
|
</html> |