Skip to content

Commit

Permalink
refactor/#60: 네이밍 일관성 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu committed Feb 2, 2025
1 parent fd2f34d commit 3882b29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.yapp.core.data.data
import javax.inject.Qualifier

@Qualifier
annotation class Dispatcher(val susuDispatcher: YappDispatchers)
annotation class Dispatcher(val yappDispatcher: YappDispatchers)

enum class YappDispatchers {
IO,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class NotFoundException(
) : RuntimeException()

class NetworkException(
override val message: String = "네트워크 연결 상태 또는 수수 서버에 문제가 있어요.",
override val message: String = "네트워크 연결 상태 또는 서버에 문제가 있어요.",
) : RuntimeException()

class UnknownException(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class SignUpViewModel @Inject constructor(
reduce { copy(positions = it) }
}
.catch {
throw it // TODO 에러 처리
// throw it // TODO 에러 처리
}
.launchIn(viewModelScope)
}
Expand Down

0 comments on commit 3882b29

Please sign in to comment.