I just used Android Studio to create an unmodified empty Android application . I am trying to set an exception checkpoint.
By default, the default exception checkpoint runs several times. So I added !(this instance of java.lang.ClassNotFoundException) as a condition, as suggested in this question .
However, I am still interrupted by my exception , this time with a modal dialog:

How to create an exception checkpoint that will remain silent until something exceptional happens?
Edited for clarification: I do not want to make a breakpoint for a specific exception, I need a general breakpoint for the exception, which I can leave at any time.
source share