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

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

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

public class MailParseException extends MailException {

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

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

  public MailParseException(Throwable ex) {
    super("Could not parse mail: " + ex.getMessage(), ex);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy