Is it possible to find out the list of exceptions which are thrown by a java program or in a web application, even if the thrown exception is handled by a catch block from where it is thrown.
I am looking for a solution that will act as a code coverage/ profiler , which will just monitor the application and list when ever an exception is thrown, both runtime and exception thrown using throw keyword.