mirror of https://github.com/beemdevelopment/Aegis
Explain vault backup permission error
Users understandably get confused by the "No persisted URI permissions" error. This patch adds some text to the dialog explaining why this happened and how the user can fix the issue. This permission issue can happen for one of two reasons: - The user made a change to the backup destination (renamed, moved, deleted, etc) - Aegis was restored from an Android backuppull/1233/head
parent
88caafd61c
commit
08c73922cc
@ -0,0 +1,7 @@
|
||||
package com.beemdevelopment.aegis.vault;
|
||||
|
||||
public class VaultBackupPermissionException extends Exception {
|
||||
public VaultBackupPermissionException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue