I'm stepping through some code with this kind of structure:
try {
doSomething();
} finally {
doAnotherThing();
// more nested try statements down here
}
An exception is being triggered somewhere but I don't know if it's in doSomething()
. Because the code goes to the doAnotherThing()
regardless of whether an exception was triggered, that tells me nothing.
Is there a visual indication somewhere when an exception is triggered? (IntelliJ 14.1.7).