diff --git a/guide/english/java/finally-keyword/index.md b/guide/english/java/finally-keyword/index.md index ba490e4dee..002472eabf 100644 --- a/guide/english/java/finally-keyword/index.md +++ b/guide/english/java/finally-keyword/index.md @@ -42,5 +42,7 @@ try { The above code works fine even though the catch statement is not used. +Note: If program exits abnormally (ie. `System.exit()` or process aborts), `finally` block will not be executed. + #### More Information: - [Oracle Java Docs : Finally keyword](https://docs.oracle.com/javase/specs/jls/se7/html/jls-14.html#jls-14.20.2)