Skip to content

Commit 76d8585

Browse files
committed
upadte
1 parent 88847fb commit 76d8585

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

IMAGES/exception.jpg

157 KB
Loading

core-java/exception-handling/index.md

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)