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

234 B
Executable File

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