Files
G4G0-2/Data Structures/Week 4/Week 4 - Exceptions.md
2025-03-16 18:59:42 +00:00

10 lines
234 B
Markdown
Executable File

```mermaid
flowchart BT
ex[Exception] --> th[Throwable]
re[RuntimeException] --> ex
ae[ArithmeticException] --> re
ioob[IndexOutOfBoundsException] --> re
iae[IllegalArgumentException] --> re
npe[NullPointerException] --> re
```