-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- APIs updated - New API added to remove list of cache from Cache Dir
- Loading branch information
1 parent
6c6b245
commit d66cc69
Showing
9 changed files
with
26 additions
and
29 deletions.
There are no files selected for viewing
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
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
StoreX/src/main/java/com/rommansabbir/storex/execptions/DuplicateKeyFoundException.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class DuplicateKeyFoundException(@JvmField override val message: String = "This subscriber is already present in the StoreX subscribers list. Make sure your SUBSCRIBER_ID is unique or else remove the current subscriber and add new one") : | ||
RuntimeException(message) | ||
Exception(message) |
2 changes: 1 addition & 1 deletion
2
StoreX/src/main/java/com/rommansabbir/storex/execptions/DuplicateStoreXConfigException.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class DuplicateStoreXConfigException(@JvmField override val message: String = "Duplicate StoreXConfig found.") : | ||
RuntimeException(message) | ||
Exception(message) |
2 changes: 1 addition & 1 deletion
2
StoreX/src/main/java/com/rommansabbir/storex/execptions/InvalidEncryptionKeyException.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class InvalidEncryptionKeyException(@JvmField override val message: String = "Invalid encryption key") : | ||
RuntimeException(message) | ||
Exception(message) |
2 changes: 1 addition & 1 deletion
2
StoreX/src/main/java/com/rommansabbir/storex/execptions/NoConfigFoundException.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class NoConfigFoundException(@JvmField override val message: String = "No valid instance found for this StoreXConfig") : | ||
RuntimeException(message) | ||
Exception(message) |
2 changes: 1 addition & 1 deletion
2
StoreX/src/main/java/com/rommansabbir/storex/execptions/NoStoreAbleObjectFound.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class NoStoreAbleObjectFound(@JvmField override val message: String = "No StoreAbleObject found associated with this key") : | ||
RuntimeException(message) | ||
Exception(message) |
2 changes: 1 addition & 1 deletion
2
StoreX/src/main/java/com/rommansabbir/storex/execptions/NotInitializedException.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,4 +1,4 @@ | ||
package com.rommansabbir.storex.execptions | ||
|
||
class NotInitializedException(@JvmField override val message: String = "StoreX is not initialized properly") : | ||
RuntimeException(message) | ||
Exception(message) |