Skip to content

Commit

Permalink
Merge pull request #9 from wagle-wagle-hackathon/hyeonji
Browse files Browse the repository at this point in the history
Fix: CHOICE_NOT_FOUND errorstatus 추가
  • Loading branch information
hyeonji91 authored Feb 16, 2024
2 parents e608386 + 46084c4 commit 2678c77
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ public enum ErrorStatus implements BaseErrorCode {
_BAD_REQUEST(HttpStatus.BAD_REQUEST,"COMMON400","잘못된 요청입니다."),
_UNAUTHORIZED(HttpStatus.UNAUTHORIZED,"COMMON401","인증이 필요합니다."),
_FORBIDDEN(HttpStatus.FORBIDDEN, "COMMON403", "금지된 요청입니다."),
_NOT_FOUND(HttpStatus.NOT_FOUND, "COMMON404", "찾을 수 없습니다.");
_NOT_FOUND(HttpStatus.NOT_FOUND, "COMMON404", "찾을 수 없습니다.")
//choice
,CHOICE_NOT_FOUND(HttpStatus.NOT_FOUND, "CHOICE400", "답변을 찾을 수 없습니다.")
;

private final HttpStatus httpStatus;
private final String code;
Expand Down

0 comments on commit 2678c77

Please sign in to comment.