250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 오블완
- 인터페이스
- 코딩테스트
- @configuration
- 코드트리조별과제
- 싱글톤
- 오버라이딩
- JSON
- HttpServletResponse
- fielderror
- ocp
- 티스토리챌린지
- 백준
- 김영한
- 서블릿
- 프록시
- java
- 테스트코드
- equals()
- 다형성
- html form
- 스프링컨테이너
- 추상클래스
- http 메시지 컨버터
- objecterror
- 코드트리
- 참조변수
- 의존관계
- 스프링
- DI
Archives
- Today
- Total
minOS
자바의 정석 ch8-15~17 사용자 정의 예외 만들기, 예외 되던지기 본문
728x90
ch8-15 사용자 정의 예외 만들기
- 개발자가 직접 예외 클래스를 정의할 수 있다.
- 조상은 Exception과 RuntimeException중에서 선택
public class CustomException extends Exception { // 1. 기본 생성자 public CustomException() { super(); } // 2. 메시지를 받는 생성자 public CustomException(String message) { super(message); } }
ch8-17 예외 되던지기(Exception re-throwing)
- 예외를 처리한 후에 다시 예외를 발생시키는 것
- 호출한 메서드와 호출된 메서드 양쪽에서 처리하는 것
public class Ex8_12 { public static void main(String[] args) { try{ method1(); } catch (Exception e){ System.out.println("main 메서드에서 예외가 처리되었습니다."); } } // main 메서드 static void method1() throws Exception{ try{ throw new Exception(); } catch (Exception e) { System.out.println("method1에서 예외를 처리하였습니다."); throw e; // 다시 예외를 발생시킨다. } } // method1() 끝 }
출력 결과
728x90
'TIL > 남궁성의 자바의 정석' 카테고리의 다른 글
자바의 정석 ch9-1~3 Object 클래스와 equals() (0) | 2024.09.25 |
---|---|
자바의 정석 ch8-18 연결된 예외(chained exception) (0) | 2024.09.23 |
자바의 정석 ch8-11~14 예외선언하기 ,finally블럭 (1) | 2024.09.12 |
자바의 정석 ch8-9,10 예외 발생 시키기 (2) | 2024.09.08 |
자바의 정석 ch8-7~8 printStackTrace(),멀티 catch블럭 (0) | 2024.09.05 |