package com.takensoft.common.exception;

/**
 * @author takensoft
 * @since 2025.01.22
 * @modification
 *     since    |    author    | description
 *  2025.01.22  |  takensoft   | 최초 등록
 *
 * RuntimeException - 실행 중 발생하는 예외를 처리하는 기본 클래스
 *
 * 존재하지 않는 정보 또는 데이터를 조회할 때 발생하는 예외
 */
public class CustomNotFoundException extends RuntimeException {

    public CustomNotFoundException() {

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

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