Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Does a finally block always run?

let's imagine the following scenario:

public void myMethod() throws MyException
  try
  {
     // do something
     // an Exception (for example an individual written MyException which extends 
     // "Exception" is thrown here
  }
  catch (OtherException e)
  {
    // do something
  }
  finally 
  {
    // do something else
  }
}

In case "MyException" is thrown in the try block and would not be catched - they finally block would be reached nonetheless, correct?

What if it would be an Runtime Exception, which would be thrown? Would the finally block be reached?

Is there any case where a finally block won't be reached?

Thanks for an answer :-)

share|improve this question
See previous - stackoverflow.com/questions/464098/… – Neil May 10 '12 at 10:29
duplicate stackoverflow.com/a/464102/986169 – giorashc May 10 '12 at 10:29
call befor exception occurs ,system.exit() – Raju May 10 '12 at 10:31

marked as duplicate by Corbin, Marko Topolnik, Nick, KingsIndian, artbristol May 10 '12 at 10:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted

Finally is always called unless you have a vm crash or call System.exit.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.