표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
public class prog { static void handlingException() { try { throw new Exception(); } catch (Exception e) { System.out.println("호출된 메소드에서 예외가 처리됨!"); } } public static void main(String[] args) { try { handlingException(); } catch (Exception e) { System.out.println("main() 메소드에서 예외가 처리됨!"); } } }