File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package kr.itn.itnhub.contact;
/**
* 존재하지 않는 담당자 id로 조회/수정/삭제를 시도했을 때 던진다.
* {@link kr.itn.itnhub.config.GlobalExceptionHandler}가 404로 변환한다.
*/
public class ContactNotFoundException extends RuntimeException {
public ContactNotFoundException(String message) {
super(message);
}
}