Home Jsp Simple-jsp-example Runtime Errors



Runtime Errors
Posted on: March 12, 2008 at 12:00 AM
Errors are arised when there is any logic problem with the logic of the program. In this program we are trying to divide the number by zero which results in runtime error.

Runtime Errors

        

Errors are arised when there is any logic problem with the logic of the program. 

In this program we are trying to divide the number by zero which results in runtime error.

The code of the program is given below:

 

<HTML>
    <HEAD>
        <TITLE>Runtime Error in Jsp page</TITLE>
    </HEAD>
    <BODY>
	<table align="center" bgcolor="#E1E1FF" border="1">
        <H1>Runtime Error in Jsp page</H1>
        <%
		 try{
            int a = 10;
            int b = 10;
            b = a / 0;			}
        catch(Exception e){
            out.println("The answer is " + e);
		}
        %>
	</table>
    </BODY>
</HTML>

Output of the Program:

 

Download this example.

Related Tags for Runtime Errors:
cerroridetimedivruntimesedproblemlogicvinumberthisidlogwithprogramresultstoramruneiterrorszeroulresultiminmnttresemmeprowhenwhichtryssuanyisimeltsivdividearzruntsruntsrithprogro


More Tutorials from this section

Ask Questions?    Discuss: Runtime Errors  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.