From c3167228881ba61fcf73d5666dc2fa893b1c870b Mon Sep 17 00:00:00 2001 From: cindy-tu <43455570+cindy-tu@users.noreply.github.com> Date: Wed, 28 Nov 2018 17:01:13 -0800 Subject: [PATCH] Added Official Oracle Java Doc for Exception (#23819) --- guide/english/java/exception-handling/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/java/exception-handling/index.md b/guide/english/java/exception-handling/index.md index ff6f9220f3..374fc0e350 100644 --- a/guide/english/java/exception-handling/index.md +++ b/guide/english/java/exception-handling/index.md @@ -32,5 +32,9 @@ finally { // block of code to be executed after try block ends } ``` + ## Advantage of Exception Handling The core advantage of exception handling is to maintain the normal flow of the application. An exception normally disrupts the normal flow of the application which is why we use exception handling. + +#### More Information: +- [Oracle Java Docs : Exception](https://docs.oracle.com/javase/specs/jls/se7/html/jls-11.html)