Merge pull request #5079 from k9mail/GH-5063_folder_not_found
Treat FolderNotFoundException as permanent error
This commit is contained in:
commit
75bf9013c9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue