Skip to content

Commit

Permalink
📝 ErrorCode 에 아이템 상세보기 api 관련 에러 enum 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuuuuk committed Oct 12, 2023
1 parent 4f34b0c commit 9ef972a
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ enum class ErrorCode(
// MAIL
EMAIL_SEND_FAIL(500, "사용자를 찾을 수 없습니다."),

// TOKEN
TOKEN_IS_EXPIRED(401, "토큰이 만료 되었습니다."),
TOKEN_NOT_VALID(401, "토큰이 유효 하지 않습니다."),

// USER
EMAIL_KEY_IS_INVALID(401, "이메일 인증번호가 일치하지 않습니다."),
EMAIL_IS_NOT_VALID(403, "인증되지 않은 이메일입니다."),
Expand All @@ -19,7 +23,7 @@ enum class ErrorCode(
USER_ALREADY_EXIST(409, "이미 사용자가 존재합니다."),
MISMATCH_PASSWORD(400, "비밀번호가 일치하지 않습니다."),

// TOKEN
TOKEN_IS_EXPIRED(401, "토큰이 만료 되었습니다."),
TOKEN_NOT_VALID(401, "토큰이 유효 하지 않습니다."),
// ITEM
ITEM_NOT_FOUND(404, "상품을 찾을 수 없습니다."),

}

0 comments on commit 9ef972a

Please sign in to comment.