Hi!
I am working in intellij idea.
How can I know about place from there I've falled in finally block?
For example, there is code:
try{
}
catch{
}
catch{
}
//some code
finally{
// For example, I am staying at this place during debug session
}
And I want to know how I have fallen here, from catch block of from some code, for example.
Is it possible?
Thanks.