Files
G4G0-2/Data Structures/Week 4/Week 4 - Exceptions.md
2025-01-30 09:27:31 +00:00

11 lines
235 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
```