diff --git a/src/main/kotlin/roomescape/auth/exception/AuthErrorCode.kt b/src/main/kotlin/roomescape/auth/exception/AuthErrorCode.kt index 1fdc7f06..40781ac5 100644 --- a/src/main/kotlin/roomescape/auth/exception/AuthErrorCode.kt +++ b/src/main/kotlin/roomescape/auth/exception/AuthErrorCode.kt @@ -14,4 +14,6 @@ enum class AuthErrorCode( ACCESS_DENIED(HttpStatus.FORBIDDEN, "A004", "접근 권한이 없어요."), LOGIN_FAILED(HttpStatus.UNAUTHORIZED, "A005", "이메일과 비밀번호를 확인해주세요."), MEMBER_NOT_FOUND(HttpStatus.UNAUTHORIZED, "A006", "회원 정보를 찾을 수 없어요."), + + TEMPORARY_AUTH_ERROR(HttpStatus.INTERNAL_SERVER_ERROR, "A999", "일시적인 오류가 발생했어요. 잠시 후 다시 시도해주세요."); }