First you need to know what exception chaining is, so here is a good start on that...
Author: Brian Goetz
Article: Exceptional practices, Part 2
http://www.javaworld.com/javaworld/jw-09-2001/jw-0914-exceptions-p2.html Exception chaining is provided by JDK 1.4, but I emailed Sun and they told me not to use 1.4, so I had to use Brian's class to get the same out of 1.3.
Ex:
and then catch the FBNExceptions in your view and display an nice pop-up with the message from the exception.
The really nice thing about chaining exceptions is that you keep appending the stack traces on to each other and you will have a great debugging report to give back to the developers when problems occur (that is if you code has a bug in it
)
Hope that helps...
[ August 17, 2002: Message edited by: Nate Johnson ]