↧
Answer by user65839 for How to jump where exception caught in IntelliJ debugger?
You're looking for an Exception Breakpoint, which you can set to break on exception even though it is caught. In the Breakpoints dialog (it by default is bound to Ctrl+Shift+F8 or Cmd+Shift+F8...
View ArticleHow to jump where exception caught in IntelliJ debugger?
I have throw new IndexOutOfBoundsException();line in my code. Unfortunately, this exception has no any effect: i.e. no message appeared and no program crash.This is because code is called from...
View Article