mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Fixed exception type
This commit is contained in:
parent
a312f6ce4d
commit
d03d87ca4d
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ public class MessageHelper {
|
|||
|
||||
return new Address[]{new InternetAddress(to.getTo().split(",")[0])};
|
||||
} catch (android.net.ParseException ex) {
|
||||
throw new ParseException(list);
|
||||
throw new IllegalArgumentException(list, ex);
|
||||
}
|
||||
} catch (android.net.ParseException ex) {
|
||||
Log.w(ex);
|
||||
|
|
Loading…
Reference in a new issue