<%@ page language="java" contentType="text/html;charset=Windows-31J" errorPage="/jsp/std/error.jsp"%> //例外が発生したらerror.jspへ転送 <HTML><BODY>
<% // NullPointerExceptionをthrowさせる String data = null; String msg = data.toString(); %>
</BODY></HTML>
<%@ page language="java" contentType="text/html;charset=Shift-JIS" isErrorPage="true"%> //exceptionオブジェクトを使用する設定 <HTML><BODY>
<% // エラーメッセージを取得して出力 String str = exception.toString(); %>
エラーメッセージ:<%=str%>