who should catch exception from servlet
Hi,
I have a few servlet registered with tomcat as follow:
frontController/
financialServlet/financial
If there is an exception thrown in financialServlet will be bubble up to frontControler or to a tomcat servlet?
My goal is to write a custom exception and throw it whenever there is an error caused by user input and all these exeption is then catched globally to direct user to an error page.

