public class ExeThrowException { public static void main (String args[]){ try{ //메시지와 함께 수동으로 에러 이벤트 발생 throw new Exception("에러내용입니다."); }catch(Exception e){ System.out.println("e.getMessage() = " + e.getMessage()); System.out.println("e.toString() = " + e.toString()); e.printStackTrace(); return; } } }
e.getMessage() = 에러내용입니다. e.toString() = java.lang.Exception: 에러내용입니다. e.printStackTrace() = java.lang.Exception: 에러내용입니다. at ExeThrowException.main(ExeThrowException.java:5)