From 2318728721606f4e0954f1f771e0a68d4c8d71a9 Mon Sep 17 00:00:00 2001 From: INKWON Date: Thu, 25 Jan 2024 00:45:26 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=EC=82=AD=EC=A0=9C=20=EC=97=90=EB=9F=AC?= =?UTF-8?q?=EB=A9=94=EC=84=B8=EC=A7=80=20=ED=81=B4=EB=9E=98=EC=8A=A4=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exception/PlaceReviewNotFoundException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/haejwo/tripcometrue/domain/review/placereview/exception/PlaceReviewNotFoundException.java b/src/main/java/com/haejwo/tripcometrue/domain/review/placereview/exception/PlaceReviewNotFoundException.java index ed0d5f4b..886b700b 100644 --- a/src/main/java/com/haejwo/tripcometrue/domain/review/placereview/exception/PlaceReviewNotFoundException.java +++ b/src/main/java/com/haejwo/tripcometrue/domain/review/placereview/exception/PlaceReviewNotFoundException.java @@ -5,9 +5,9 @@ public class PlaceReviewNotFoundException extends ApplicationException { - private static final ErrorCode ERROR_CODE = ErrorCode.PLACE_REVIEW_NOT_FOUND; + private static ErrorCode ERROR_CODE = ErrorCode.PLACE_REVIEW_NOT_FOUND; - public PlaceReviewNotFoundException() { - super(ERROR_CODE); - } + public PlaceReviewNotFoundException(){ + super(ERROR_CODE); + } }