Files
G4G0-2/Data Structures/Week 4/Week 4 - Exceptions.md
2024-10-16 09:12:37 +01:00

235 B

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