JSTL Exception: UnCaught Exception
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <html> <head> <title>Throw an Exception</title> </head> <body> <c:set var="x" value="10" scope="page" /> <c:set var="y" value="five" scope="page" /> x divided by y is <c:out value="${x/y}" /> <br /> </body> </html>