이 코드에서는 someVar
catch 블록이 실행되고 두 번째 예외가 발생하더라도 설정됩니다.
public void someFunction() throws Exception {
try {
//CODE HERE
} catch (Exception e) {
Log.e(TAG, "", e);
throw new Exception(e);
} finally {
this.someVar= true;
}
}