Skip to content

Commit

Permalink
fix: 로그인 예외처리 수정 (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwahk committed Dec 10, 2024
1 parent a3c07c9 commit f8eaa53
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,16 @@ class LoginViewModel @Inject constructor(
_errorMessage.value = "네트워크 오류가 발생했습니다. 인터넷 연결을 확인해주세요."
} catch (e: HttpException) {
when (e.code()) {
400, 404 -> {
400 -> {
_errorMessage.value = "잘못된 아이디 또는 비밀번호입니다."
Log.e("LoginViewModel", "Error: ${_errorMessage.value}")
}

404 -> {
_errorMessage.value = "회원 정보를 찾을 수 없습니다."
Log.e("LoginViewModel", "Error: ${_errorMessage.value}")
}

else -> {
Log.e("LoginViewModel", "HttpException: ${e.message}")
_errorMessage.value = "서버 오류가 발생했습니다. 다시 시도해주세요."
Expand Down

0 comments on commit f8eaa53

Please sign in to comment.