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
- 인터페이스
- DI
- 스프링컨테이너
- java
- 티스토리챌린지
- 오버라이딩
- 스프링
- 다형성
- JSON
- @configuration
- 코드트리
- 서블릿
- 코딩테스트
- ocp
- 테스트코드
- 싱글톤
- HttpServletResponse
- 추상클래스
- 백준
- 프록시
- 오블완
- objecterror
- 의존관계
- equals()
- 참조변수
- fielderror
- html form
- http 메시지 컨버터
- 코드트리조별과제
- 김영한
Archives
- Today
- Total
minOS
자바의 정석 ch8-18 연결된 예외(chained exception) 본문
728x90
연결된 예외(chained exception)
- 한 예외가 다른 에외를 발생시킬 수 있다.
- 예외 A가 예외 B를 발생시키면, A는 B의 원인 예외(cause exception)
Throwable initCause(Throwable cause) : 지정한 예외를 원인 예외로 등록
Throwable getCause() : 원인 예외 반환
// 원인 예외를 초기화하는 메서드 (한 번만 호출 가능) public synchronized Throwable initCause(Throwable cause) { if (this.cause != null) { throw new IllegalStateException("Can't overwrite cause"); } if (cause == this) { throw new IllegalArgumentException("Self-causation not permitted"); } this.cause = cause; return this; } // 원인 예외를 반환하는 메서드 public Throwable getCause() { return (cause == this ? null : cause); }
예시// SpaceException 정의 class SpaceException extends Exception { public SpaceException(String message) { super(message); } } // InstallException 정의 class InstallException extends Exception { public InstallException(String message, Throwable cause) { super(message, cause); } } public class Main { public static void main(String[] args) { try { // 원인 예외 SpaceException 발생 throw new SpaceException("디스크 공간이 부족합니다."); } catch (SpaceException e) { // SpaceException을 원인으로 InstallException 발생 throw new InstallException("설치 실패", e); } } }
출력결과Exception in thread "main" InstallException: 설치 실패 at Main.main(Main.java:16) Caused by: SpaceException: 디스크 공간이 부족합니다. at Main.main(Main.java:13)
연결된 예외 사용하는 이유
[이유1] 여러 예외를 하나로 묶어서 다루기 위해서
// 디스크 공간 부족 예외 class SpaceException extends Exception { public SpaceException(String message) { super(message); } } // 네트워크 오류 예외 class NetworkException extends Exception { public NetworkException(String message) { super(message); } } // 설치 관련 예외 class InstallException extends Exception { public InstallException(String message, Throwable cause) { super(message, cause); } } // 설치 클래스 public class Install { public void performInstallation() throws InstallException { try { // 디스크 공간 부족 예외 발생 throw new SpaceException("디스크 공간이 부족합니다."); } catch (SpaceException e) { // 첫 번째 예외를 원인으로 설치 예외 발생 InstallException installException = new InstallException("설치 실패", e); try { // 네트워크 오류 예외 발생 throw new NetworkException("네트워크 연결에 문제가 있습니다."); } catch (NetworkException e2) { // 두 번째 예외를 원인으로 연결 installException.initCause(e2); } throw installException; // 연결된 설치 예외 던짐 } } public static void main(String[] args) { Install install = new Install(); try { install.performInstallation(); } catch (InstallException e) { System.out.println("최종 예외: " + e.getMessage()); System.out.println("원인 예외: " + e.getCause().getMessage()); e.printStackTrace(); } } }
출력결과최종 예외: 설치 실패 원인 예외: 네트워크 연결에 문제가 있습니다. InstallException: 설치 실패 at Install.performInstallation(Install.java:12) Caused by: java.lang.NetworkException: 네트워크 연결에 문제가 있습니다. at Install.performInstallation(Install.java:20) Caused by: java.lang.SpaceException: 디스크 공간이 부족합니다. at Install.performInstallation(Install.java:5)
[이유2] checked 예외를 unchecked예외로 변경할떄// 디스크 공간 부족 예외 (Checked) class SpaceException extends Exception { public SpaceException(String message) { super(message); } } // 메모리 부족 예외 (Unchecked) class MemoryException extends RuntimeException { public MemoryException(String message) { super(message); } } // 설치 클래스 public class Installer { public void startInstall() throws SpaceException { // 디스크 공간 부족 예외 발생 throw new SpaceException("디스크 공간이 부족합니다."); // 메모리 부족 예외 발생 (Unchecked) // throw new MemoryException("메모리가 부족합니다."); } public static void main(String[] args) { Installer installer = new Installer(); try { installer.startInstall(); } catch (SpaceException e) { System.out.println("체크된 예외 발생: " + e.getMessage()); } // 메모리 부족 예외는 Unchecked 예외이므로 따로 처리하지 않아도 됩니다. throw new MemoryException("메모리가 부족합니다."); } }
체크된 예외 발생: 디스크 공간이 부족합니다. Exception in thread "main" MemoryException: 메모리가 부족합니다.
728x90
'TIL > 남궁성의 자바의 정석' 카테고리의 다른 글
자바의 정석 ch9-4~6 hashCode(), toString() (1) | 2024.09.25 |
---|---|
자바의 정석 ch9-1~3 Object 클래스와 equals() (0) | 2024.09.25 |
자바의 정석 ch8-15~17 사용자 정의 예외 만들기, 예외 되던지기 (1) | 2024.09.14 |
자바의 정석 ch8-11~14 예외선언하기 ,finally블럭 (1) | 2024.09.12 |
자바의 정석 ch8-9,10 예외 발생 시키기 (2) | 2024.09.08 |