Technote/JAVA 10주차 5번문제 by Pooh0216 2009. 5. 13. P10_5 아래 프로그램을 실행하여 어떤 출력이 나오는지를 프로그램과 비교하여 확인하시오. package p10_5; public class MethodsOfException { public static void main(String[] args) { try { throw new Exception("My Exception"); } catch (Exception e) { System.err.println("Caught Exception"); System.err.println("getMessage():" + e.getMessage()); System.err.println("toString():" + e); System.err.println("printStackTrace():"); e.printStackTrace(); } } } 공유하기 게시글 관리 International Scholar Pooh 저작자표시 'Technote > JAVA' 카테고리의 다른 글 10주차 7번문제 (0) 2009.05.14 10주차 6번문제 (0) 2009.05.14 10주차 4번문제 (0) 2009.05.13 10주차 3번문제 (0) 2009.05.13 10주차 2번 (0) 2009.05.13 관련글 10주차 7번문제 10주차 6번문제 10주차 4번문제 10주차 3번문제