exception management with beans and Jsps

2002-05-17 Thread Adam Pfeiffer
Does anyone know where I can find a good doc on how to handle exception with JSP and beans. I would really like the bean to trap all the errors and set the messages and send those back to the jsp. I am not sure how to do this. I am still new with catching exceptions, so if my question

Re: exception management with beans and Jsps

2002-05-17 Thread Phillip Morelock
generally you should be using as few exceptions as possible...because they are very expensive. But if the API's you are using throw exceptions, and such, you should definitely catch them at the bean level, and return negative or false values to the jsp or whatever, and just use simple

Re: exception management with beans and Jsps

2002-05-17 Thread Adam Pfeiffer
Thanks Phillip, That give me some good ideas to start with! --- Phillip Morelock [EMAIL PROTECTED] wrote: generally you should be using as few exceptions as possible...because they are very expensive. But if the API's you are using throw exceptions, and such, you should definitely catch