목차

e.tostring_e.getmessage_e.printstacktrace_의_차이점

  • description :
  • author : 도봉산핵주먹
  • email : hylee@repia.com
  • lastupdate : 2020-04-23

작성 이유

Excqption e 메세지 기능

Java 예제

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)

Ref