List of usage examples for javax.mail NoSuchProviderException NoSuchProviderException
public NoSuchProviderException(String message)
From source file:com.alvexcore.repo.emails.impl.ExtendedEmailMessage.java
protected EmailProvider getEmailProvider(String id) throws NoSuchProviderException { EmailProvider provider = null;// ww w .j a va 2s .co m for (EmailProvider p : getProviders()) if (p.getId().equals(id)) provider = p; if (provider == null) throw new NoSuchProviderException("Specified email provider not found"); return provider; }