-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issues #287 feat: database internal 추가 및 파일 이동
- Loading branch information
Showing
8 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.../lighthouse/data/database/BeepDatabase.kt → ...se/data/database/database/BeepDatabase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
data/data-database/src/main/java/com/lighthouse/data/database/exception/DBDeleteException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.lighthouse.data.database.exception | ||
|
||
class DBDeleteException(message: String = "데이터 Delete 에 실패 했습니다.") : Exception(message) | ||
internal class DBDeleteException(message: String = "데이터 Delete 에 실패 했습니다.") : Exception(message) |
2 changes: 1 addition & 1 deletion
2
data/data-database/src/main/java/com/lighthouse/data/database/exception/DBInsertException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.lighthouse.data.database.exception | ||
|
||
class DBInsertException(message: String = "데이터 Insert 에 실패 했습니다.") : Exception(message) | ||
internal class DBInsertException(message: String = "데이터 Insert 에 실패 했습니다.") : Exception(message) |
2 changes: 1 addition & 1 deletion
2
...data-database/src/main/java/com/lighthouse/data/database/exception/DBNotFoundException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.lighthouse.data.database.exception | ||
|
||
class DBNotFoundException(message: String = "데이터를 찾을 수 없습니다.") : Exception(message) | ||
internal class DBNotFoundException(message: String = "데이터를 찾을 수 없습니다.") : Exception(message) |
2 changes: 1 addition & 1 deletion
2
data/data-database/src/main/java/com/lighthouse/data/database/exception/DBSelectException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.lighthouse.data.database.exception | ||
|
||
class DBSelectException(message: String = "데이터 Select 에 실패 했습니다.") : Exception(message) | ||
internal class DBSelectException(message: String = "데이터 Select 에 실패 했습니다.") : Exception(message) |
2 changes: 1 addition & 1 deletion
2
data/data-database/src/main/java/com/lighthouse/data/database/exception/DBUpdateException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package com.lighthouse.data.database.exception | ||
|
||
class DBUpdateException(message: String = "데이터 Update 에 실패 했습니다.") : Exception(message) | ||
internal class DBUpdateException(message: String = "데이터 Update 에 실패 했습니다.") : Exception(message) |
2 changes: 1 addition & 1 deletion
2
data/data-database/src/main/java/com/lighthouse/data/database/ext/KotlinExt.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters