File tree Expand file tree Collapse file tree 2 files changed +3
-20
lines changed
core-java/exception-handling Expand file tree Collapse file tree 2 files changed +3
-20
lines changed Original file line number Diff line number Diff line change @@ -17,26 +17,9 @@ An **exception** is an event that disrupts the normal flow of the program. It is
1717- ** Errors** – Serious issues that applications should not try to handle (e.g., ` OutOfMemoryError ` )
1818
1919<br />
20-
21- ``` plaintext
22- Throwable
23- ├── Error
24- │ ├── OutOfMemoryError
25- │ ├── StackOverflowError
26- │ └── VirtualMachineError
27- └── Exception
28- ├── IOException
29- │ ├── FileNotFoundException
30- │ └── EOFException
31- ├── SQLException
32- ├── RuntimeException
33- │ ├── NullPointerException
34- │ ├── ArithmeticException
35- │ └── ArrayIndexOutOfBoundsException
36- ├── ExceptionInInitializerError
37- └── Custom Exception (User-defined)
38- ```
39-
20+ <div align =" center " width =700 height =200 >
21+ <img src =" IMAGES/exception.jpg " class =" execution " alt =" exception hierarchy " >
22+ </div ><br />
4023<br />
4124
4225## 🔹 Keywords in Exception Handling
You can’t perform that action at this time.
0 commit comments