package com.takensoft.common.exception;

/**
 * @author 하석형
 * @since 2025.06.20
 * @modification
 *     since    |    author    | description
 *  2025.06.20  |    하석형     | 최초 등록
 *
 * RuntimeException - 실행 중 발생하는 예외를 처리하는 기본 클래스
 *
 * 회원가입 시 이메일 중복으로 발생하는 예외
 */
public class CustomEmailTakenException extends RuntimeException {

    public CustomEmailTakenException() {

    }

    public CustomEmailTakenException(String message) {
        super(message);
    }

    public CustomEmailTakenException(String message, Throwable cause) {
        super(message, cause);
    }

}