둘 모두 Throwable
의 자식 클래스
💀 에러 Error
- 해결 불가능한 문제
🛑 예외 Exception
- 대비하여 해결할 수 있는 문제
☕ Main.java
// ⭐️ 아래의 클래스들을 살펴보고 상속구조를 확인해 볼 것
// java.lang 패키지의 다른 에러, 예외 클래스들도 둘러볼 것
Throwable throwable;
Error error;
Exception exception;
OutOfMemoryError outOfMemoryError;
StackOverflowError stackOverflowError;
RuntimeException runtimeException;
IndexOutOfBoundsException indexOutOfBoundsException;
Throwable
Error
VirtualMachineError
OutOfMemoryError
StackOverflowError
Exception
RuntimeException
IndexOutOfBoundException
NullPointerException
ClassCastException
ReflectiveOperationException
ClassNotFoundException
NoSuchMethodException
IOException
FileNotFoundException
- *java.io 패키지*