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

235 B
Executable File

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