JSP Java


    
        Using a try/catch Block
    
    
        

Using a try/catch Block


    <%
        try{
            int i = 1;
            i = i / 0;
            out.println("The answer is " + i);
        }
        catch (Exception e){
            out.println("An exception occurred: " + e.getMessage());
        }
    %>