Given: <c:out value="${ 1 / 0 }"/> - or - <c:out value="${ 1 div 0 }"/> Result: Infinity is displayed, not Throwable is caught.
I guess we missed the fact that division by 0 is perfectly legal in Java. We can certainly change the RI to throw an exception in this case, but I wonder if we should remove this behavior from the spec, since it isn't really necessary.
Looks like we're "clarifying" the spec to say that divide by zero is not one of the example conditions that would throw an exception.