Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ae88bb6 authored by cketti's avatar cketti
Browse files

Treat FolderNotFoundException as permanent error

parent 938a2654
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ public class FolderNotFoundException extends MessagingException {


    public FolderNotFoundException(String folderServerId) {
        super("Folder not found: " + folderServerId);
        super("Folder not found: " + folderServerId, true);
        this.folderServerId = folderServerId;
    }