Skip to content

Commit

Permalink
#256 Feat: 댓글 관련 예외 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-haeseung committed Nov 1, 2024
1 parent be598ff commit 99d3d87
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ public enum ErrorStatus implements BaseErrorCode {

// 코멘트 관련 에러 4000
COMMENT_NOT_FOUND(HttpStatus.BAD_REQUEST, "COMMENT_4005", "댓글이 없습니다."),
COMMENT_CREATE_UNAUTHORIZED(HttpStatus.BAD_REQUEST, "COMMENT_4006", "댓글 생성 권한이 없습니다."),
COMMENT_UPDATE_UNAUTHORIZED(HttpStatus.BAD_REQUEST, "COMMENT_4006", "댓글 수정 권한이 없습니다."),
COMMENT_DELETE_UNAUTHORIZED(HttpStatus.BAD_REQUEST, "COMMENT_4006", "댓글 삭제 권한이 없습니다."),


// 북마크 관련 에러 6000
Expand Down

0 comments on commit 99d3d87

Please sign in to comment.