Skip to content

Commit

Permalink
PET-302 feat : OAuth 조회할 수 없음 예외 코드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tlarbals824 committed Feb 12, 2024
1 parent 5e4ea3c commit c138187
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public enum AuthError implements Error {
INVALID_AUTHORIZATION_TYPE("유효하지 않은 Authorization Type 입니다.", 1003, HttpStatus.BAD_REQUEST),
EMPTY_AUTHORIZATION_HEADER("Authorization Header가 비어있습니다.", 1004, HttpStatus.BAD_REQUEST),
OAUTH_FAIL("OAuth 인증에 실패하였습니다.", 1005, HttpStatus.BAD_REQUEST),
OAUTH_NOT_FOUND("OAuth 정보를 찾을 수 없습니다.", 1006, HttpStatus.NOT_FOUND),
INVALID_OAUTH_REQUEST("다른 소셜로그인으로 가입된 계정이 존재합니다.", 2002, HttpStatus.BAD_REQUEST), // 오류 코드 변경 요청하기
;

Expand Down

0 comments on commit c138187

Please sign in to comment.