Added Official Oracle Java Doc for Exception (#23819)

pull/22956/head^2
cindy-tu 2018-11-28 17:01:13 -08:00 committed by Manish Giri
parent f2713ff7f9
commit c316722888
1 changed files with 4 additions and 0 deletions

View File

@ -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)