Thanks for the response; I will check the code. Dwight
At 08:52 AM 6/1/2007, you wrote:
> From: Dwight Farris [mailto:[EMAIL PROTECTED] > Subject: Arithmetic Exception > > I am receiving what I interpret as a 'divide by zero' error - > > java.lang.ArithmeticException: / by zero > at > edu.uc.cohorts.util.Util.calcCohortAllotment(Util.java:123) "Doctor, doctor, it hurts when I do this!" This is an error in the code of your webapp; as good as Tomcat is, it can't correct basic programming errors in user code. The exception is telling you exactly where to look for the problem. You need to either check for zero before the divide, or catch the exception in your code, or configure an error page for the situation if you want to display something pretty to the end user. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]