Skip to content

Commit

Permalink
[fix] 삭제 에러메세지 클래스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
BackInGone committed Jan 25, 2024
1 parent e14ed61 commit 2318728
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 2318728

Please sign in to comment.