All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.greetgo.email.from_spring.MailAuthenticationException Maven / Gradle / Ivy

The newest version!
package kz.greetgo.email.from_spring;

public class MailAuthenticationException extends MailException {

  public MailAuthenticationException(String msg) {
    super(msg);
  }

  public MailAuthenticationException(String msg, Throwable ex) {
    super(msg, ex);
  }

  public MailAuthenticationException(Throwable ex) {
    super("Authentication failed: " + ex.getMessage(), ex);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy