Quantcast
Channel: Java mon amour
Viewing all articles
Browse latest Browse all 1121

JSP error page

$
0
0


<%@page isErrorPage="true" %>
<html>
<body>
<h1>Error page</h1>
<pre>
<% if (exception != null) {
out.write("exception message=" + exception.toString());
}
else {
out.write("no exception available");
}
%>
</pre>
</body>
</html>



Viewing all articles
Browse latest Browse all 1121

Trending Articles