mirror of https://github.com/M66B/FairEmail.git
Changed multipart exception
This commit is contained in:
parent
cad1ea6540
commit
f5be7a3c82
|
@ -2332,7 +2332,7 @@ public class MessageHelper {
|
|||
}
|
||||
}
|
||||
} else
|
||||
throw new IllegalArgumentException("Multipart=" + (content == null ? null : content.getClass().getName()));
|
||||
throw new MessagingException("Multipart=" + (content == null ? null : content.getClass().getName()));
|
||||
}
|
||||
|
||||
if (part.isMimeType("multipart/signed")) {
|
||||
|
@ -2448,7 +2448,7 @@ public class MessageHelper {
|
|||
if (content instanceof Multipart)
|
||||
multipart = (Multipart) part.getContent();
|
||||
else
|
||||
throw new IllegalArgumentException("Multipart=" + (content == null ? null : content.getClass().getName()));
|
||||
throw new MessagingException("Multipart=" + (content == null ? null : content.getClass().getName()));
|
||||
|
||||
boolean other = false;
|
||||
List<Part> plain = new ArrayList<>();
|
||||
|
|
Loading…
Reference in New Issue