http://lusiea.tistory.com/entry/Java-etoString-egetMessage-eprintStackTrace%EC%9D%98-%EC%B0%A8%EC%9D%B4%EC%A0%90 ** 예제 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()); //System...