%-- Indicate the location of the error handler using the page tag --%>
<%
if (request.getMethod().equals("POST")) {
if (request.getParameter("language").equals("JAVA")) {
out.println("You got that right!");
} else {
//thow a new exception initializing it with some message
}
}
%>