Skip to content

Commit

Permalink
[FIX] ErrorCode reviewCode 중복 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ss0ngcode authored Nov 12, 2024
1 parent 77b5cf3 commit bfc96ff
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ public enum ErrorCode {
REVIEW_ALREADY_EXIST(HttpStatus.BAD_REQUEST, "이미 리뷰를 작성하였습니다."),
REVIEW_PERMISSION_DENIED(HttpStatus.BAD_REQUEST, "해당 경매에 리뷰를 작성할 권한이 없습니다."),

// Review Code
INVALID_RATING(HttpStatus.BAD_REQUEST, "리뷰 평점은 " + Rating.MIN + "점부터 " + Rating.MAX + "점까지만 가능합니다."),
REVIEW_ALREADY_EXIST(HttpStatus.BAD_REQUEST, "이미 리뷰를 작성하였습니다."),
REVIEW_PERMISSION_DENIED(HttpStatus.BAD_REQUEST, "해당 경매에 리뷰를 작성할 권한이 없습니다."),

// EXPLAIN: 500 SERVER ERROR
INTERNAL_SERVER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "서버오류 발생");

Expand Down

0 comments on commit bfc96ff

Please sign in to comment.