Skip to content

Commit

Permalink
[fix] 400 Error 반환하게 변경 (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarlgnszx committed Oct 12, 2024
1 parent 4b8c497 commit a034122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/sopt/app/common/response/ErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public enum ErrorCode {
MISSION_NOT_FOUND("존재하지 않는 미션입니다.", HttpStatus.NOT_FOUND),

// STAMP
STAMP_NOT_FOUND("존재하지 않는 스탬프입니다.", HttpStatus.NOT_FOUND),
STAMP_NOT_FOUND("존재하지 않는 스탬프입니다.", HttpStatus.BAD_REQUEST),
DUPLICATE_STAMP("이미 해당 미션에 대한 스탬프가 존재합니다.", HttpStatus.CONFLICT),
INVALID_STAMP_ACTIVITY_DATE("스탬프 활동 날짜가 존재하지 않습니다.", HttpStatus.BAD_REQUEST),
INVALID_STAMP_CONTENTS("스탬프 내용이 존재하지 않습니다.", HttpStatus.BAD_REQUEST),
Expand Down

0 comments on commit a034122

Please sign in to comment.