Skip to content

Commit

Permalink
refac: 유효하지 않은 카카오 인증 코드 예외 메시지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
helenason committed Mar 2, 2025
1 parent 19b8efc commit 29ca60f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public enum AuthErrorCode implements ErrorCode {
INVALID_ACCESS_TOKEN(HttpStatus.UNAUTHORIZED, "access token이 유효하지 않습니다."),
KAKAO_SERVER_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "카카오 로그인 서버와의 연결 과정에서 문제가 발생하였습니다."),
KAKAO_INVALID_APP_INFO(HttpStatus.INTERNAL_SERVER_ERROR, "카카오 애플리케이션 정보가 유효하지 않습니다."),
KAKAO_INVALID_AUTH_CODE(HttpStatus.INTERNAL_SERVER_ERROR, "카카오 인증 코드는 오직 한 번만 사용 가능합니다."),
KAKAO_INVALID_AUTH_CODE(HttpStatus.INTERNAL_SERVER_ERROR, "카카오 인증 코드가 유효하지 않습니다."),
KAKAO_INVALID_ACCESS_TOKEN(HttpStatus.INTERNAL_SERVER_ERROR, "카카오 access token이 유효하지 않습니다."),
;

Expand Down

0 comments on commit 29ca60f

Please sign in to comment.