Dans ce code sera someVar
défini même si le bloc catch est exécuté et la deuxième exception est levée?
public void someFunction() throws Exception {
try {
//CODE HERE
} catch (Exception e) {
Log.e(TAG, "", e);
throw new Exception(e);
} finally {
this.someVar= true;
}
}