is it possible to trace all exceptions in Tomcat server (or, in general, JVM)?
Thanks for all!
P.S. I need it because exception occurs in
org.primefaces.application.PrimeResourceHandler.handleResourceRequest() and a trivial message is printed (line 79)
Sure. Start tomcat using that:
And then connect using the eclipse debugger, as described here:
http://wiki.apache.org/tomcat/FAQ/Developing#Q1
When for example Eclipse is connected, go to the Breakpoints panel, there will be a button “Add Java Exception breakpoint” if you set java.lang.Exception or java.lang.RuntimeException there, all the subclasses will be caught.