JSTL c:catch Core Tag
The JSTL <c:catch> Core Tag is used in exception handling to catch any Throwable object in its body. Syntax: <c:catch var ="variableName"> //exception code </c:catch><c:catch var ="variableName"> //exception code </c:catch> c:catch tag attributes: Attribute Description Required var It specify the name of the variable to hold the java.lang.Throwable if thrown by elements in the body. … Read more