Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.1
-
None
Description
Please replace line 367 of org.apache.commons.mail.MultiPartEmail
[code]
throw new EmailException("Invalid URL set");
[code]
with
[code]
throw new EmailException("Invalid URL: "+url, e);
[code]
to generate a better error message when an IOException is thrown.