throw 처리
public class ThrowsTest {
static void test() throws ClassNotFoundException{
Class.forName("java.lang.Object");
System.out.println(100/0);
}
public static void main(String[] args) throws
ClassNotFoundException {
// JVM에 예외를 전달한다.
// 예외 메시지를 출력한다.
// JVM이 예외 메시지를 출력 대신에 다른 처리를 하고자 한다면
// try-catch를 사용한다.
test();
}
}