Output error message to console : Exception « JSP « Java Tutorial






<HTML>
    <HEAD>
        <TITLE>Building a simple error handling page.</TITLE>
    </HEAD>

    <BODY>
        <%
            try{
                int value = 1;
                value = value / 0;
            }
            catch (Exception e){
                System.out.println(e.getMessage());
            }
        %>
    </BODY>
</HTML>








23.12.Exception
23.12.1.Causing a Runtime Error
23.12.2.Using a try/catch Block
23.12.3.Nesting try/catch Statements
23.12.4.Catching an ArrayIndexOutOfBoundsException Exception
23.12.5.Catching an ArithmeticException Exception
23.12.6.Throwing an Exception
23.12.7.Throwing Exceptions From Methods
23.12.8.Creating a Custom Exception Object
23.12.9.Output error message to console
23.12.10.Printing a Stack Trace to the Server Console