JSP: Gérer une Exception(throw)

Author:
<html>
    <head>
        <title>Gestion des Exception</title>
    </head>
 
    <body>
        <title>TJeter l'exception</title>
        <%
        try {
            throw new ArithmeticException("Math Exception!");
        } catch(ArithmeticException e) {
            out.println("Le message de l'xception: " + e);
        }
        %>
    </body>
</html>
 
           
       

There are no posts related to JSP: Gérer une Exception(throw).

Cet article JSP: Gérer une Exception(throw) est apparu en premier sur .