item 75) 예외의 상세 메시지에 실패 관련 정보를 담으라
예외에 실패 메시지 담기
Exception in thread "main" FoolException
at Sample.sayNick(Sample.java:7)
at Sample.main(Sample.java:14)public IndexOutOfBoundsException(int lowerBound, int upperBound, int index){
//실패를 포착하는 상세 메시지 작성
super("Lower bound: "+lowerBound +
", Upper bound: "+upperBound +
", Index: "+index);
//프로그램에서 이용할 수 있도록 실패 정보 저장
this.lowerBound = lowerBound;
this.upperBound = upperBound;
this.index = index;
}Last updated