
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 com.takensoft.common.exception;
/**
* @author takensoft
* @since 2025.05.21
* @modification
* since | author | description
* 2025.05.21 | 하석형 | 최초 등록
*
* RuntimeException - 실행 중 발생하는 예외를 처리하는 기본 클래스
*
* 인증 발송 실패 시 발생하는 예외
*/
public class CustomCertifySendFailException extends RuntimeException {
public CustomCertifySendFailException() {
}
public CustomCertifySendFailException(String message) {
super(message);
}
public CustomCertifySendFailException(String message, Throwable cause) {
super(message, cause);
}
}