728x90
기능이 실패했을 경우 예외처리
<Checked Exception & Unchecked Exception>
Checked Exception : 예외처리가 필수
Unchecked Exception : 예외처리 선택
Unchecked Exception의 조상 Runtime Exception
Checked Exception의 조상은 Exception
예외 처리할 필요가 없게 extends를 Runtime Exception로 변경
package com.kh.Spring.member.model.exception;
public class MemberException extends RuntimeException {
// Checked Exception & Unchecked Exception
// Checked Exception : 예외처리가 필수
// Unchecked Exception : 예외처리 선택
// Unchecked Exception의 조상 Runtime Exception
// Checked Exception의 조상은 Exception
// 예외 처리할 필요가 없게 extends를 Runtime Exception로 변경
public MemberException() {}
public MemberException(String msg) {
super(msg);
}
}
728x90
반응형
'small steps > 1일 1코딩 - 코딩을 내 몸처럼' 카테고리의 다른 글
[1일 1코딩][Web] jQuery ajax (0) | 2022.06.11 |
---|---|
[1일 1코딩] (0) | 2022.06.10 |
[1일 1코딩][Spring] 초기 세팅 (0) | 2022.06.08 |
[1일 1코딩][Web] EL & JSTL : <c:url>,<c:param> 뷰페이지 코드분석 (0) | 2022.06.07 |
[1일 1코딩][MyBatis] config.xml 설정파일 (0) | 2022.06.06 |