In diesem Code wird someVar
gesetzt, auch wenn der catch-Block ausgeführt wird und die zweite Ausnahme ausgelöst wird?
public void someFunction() throws Exception {
try {
//CODE HERE
} catch (Exception e) {
Log.e(TAG, "", e);
throw new Exception(e);
} finally {
this.someVar= true;
}
}