Reports exceptions that are thrown by top level JSP scriptlets.
For example:
<% throw new Exception(); %>
These JSPs are still compilable, since servlet container wraps all JSP code with try {} catch() {} statement,
but it is bound to produce runtime exception anyway when deployed on the server.