Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordesperateCoder <echotodevnull@gmail.com>2020-10-04 17:51:11 +0300
committerdesperateCoder <echotodevnull@gmail.com>2020-10-04 17:51:11 +0300
commit280c25926766c8719aa2542f7edd0215550b800b (patch)
treee2ce56b54cea27c43678a72d1c2509dd382e3501 /app/src/main/java/it/niedermann/nextcloud/deck/exceptions
parenteb4f816bf3ef32a1f1ae7215025d2727fc78982d (diff)
#687 fixed another npe
Diffstat (limited to 'app/src/main/java/it/niedermann/nextcloud/deck/exceptions')
-rw-r--r--app/src/main/java/it/niedermann/nextcloud/deck/exceptions/DeckException.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/java/it/niedermann/nextcloud/deck/exceptions/DeckException.java b/app/src/main/java/it/niedermann/nextcloud/deck/exceptions/DeckException.java
index d9d8c5dde..0512f8a60 100644
--- a/app/src/main/java/it/niedermann/nextcloud/deck/exceptions/DeckException.java
+++ b/app/src/main/java/it/niedermann/nextcloud/deck/exceptions/DeckException.java
@@ -5,7 +5,8 @@ public class DeckException extends IllegalArgumentException {
public enum Hint {
CAPABILITIES_NOT_PARSABLE,
CAPABILITIES_VERSION_NOT_PARSABLE,
- UNKNOWN_ACCOUNT_USER_ID
+ UNKNOWN_ACCOUNT_USER_ID,
+ DEPENDENCY_NOT_SYNCED_YET
}
private Hint hint;