Throwing an Exception in JSTL

In this program we are going to show you what will happen if we try to divide any number by 0. After going through this example you can better understand how the exception can be thrown in JSTL.

Throwing an Exception in JSTL

Throwing an Exception in JSTL

        

In this program we are going to show you what will happen if we try to divide any number by 0. After going through this example you can better understand how the exception can be thrown in JSTL.

 

The code of the program is given below:

 

 

 

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>Throwing an Exception</title>
</head>

<body>5 divided by 0 is 
<c:out value="${5/0}" />
</body>
</html>

The output of the program is given below:

Download this example.