IntelliJ IDEA: How can I create an exception breakpoint that stops on all exceptions *except for* ClassNotFoundException?

Viewed 16139

I'd like to run my test suite in the debugger and break on any unexpected exception, but the Java classloaders throw lots of ClassNotFoundExceptions during normal operation.

So it would be nice if I could create an exception breakpoint that ignores ClassNotFoundExceptions and stops on everything else.

3 Answers
Related