Changed multipart exception

This commit is contained in:
M66B 2021-02-26 10:18:42 +01:00
parent cad1ea6540
commit f5be7a3c82
1 changed files with 2 additions and 2 deletions

View File

@ -2332,7 +2332,7 @@ public class MessageHelper {
} }
} }
} else } 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")) { if (part.isMimeType("multipart/signed")) {
@ -2448,7 +2448,7 @@ public class MessageHelper {
if (content instanceof Multipart) if (content instanceof Multipart)
multipart = (Multipart) part.getContent(); multipart = (Multipart) part.getContent();
else else
throw new IllegalArgumentException("Multipart=" + (content == null ? null : content.getClass().getName())); throw new MessagingException("Multipart=" + (content == null ? null : content.getClass().getName()));
boolean other = false; boolean other = false;
List<Part> plain = new ArrayList<>(); List<Part> plain = new ArrayList<>();