- EntityNotFoundException와 같이 리팩토링 하면 좋을 것 같음
package com.prgms.kokoahairshop.reservation.exception; public class ReservationNotFoundException extends RuntimeException{ public ReservationNotFoundException() { } public ReservationNotFoundException(String message) { super(message); } }