Java 예외 발생시키기, checked예외, unchecked 예외
볼빵빵오춘기
예외 발생시키기 연산자 new를 이용해서 발생시키려는 예외 클래스의 객체를 만든 다음. ex. Exception e = new Exception(”고의로 발생시켰음”); 키워드 throw를 이용해서 예외를 발생시킨다. ex. throw e; ⇒ 객체를 생성한다고 해서 예외가 발생하는 것이 아니라 throw를 써줘야 예외가 발생한다. public class Ex8_4 { public static void main(String[] args) { try { Exception e = new Exception("create error"); throw e; }catch(Exception e){ System.out.println(e.getMessage()); e.printStackTrace(); } System.ou..