in src/main/java/org/apache/commons/mail/Email.java [972:981]
public Email setCc(final Collection<InternetAddress> aCollection) throws EmailException
{
if (aCollection == null || aCollection.isEmpty())
{
throw new EmailException("Address List provided was invalid");
}
this.ccList = new ArrayList<>(aCollection);
return this;
}