In questo codice verrà someVar
impostato anche se viene eseguito il blocco catch e viene generata la seconda eccezione?
public void someFunction() throws Exception {
try {
//CODE HERE
} catch (Exception e) {
Log.e(TAG, "", e);
throw new Exception(e);
} finally {
this.someVar= true;
}
}