kz.greetgo.email.from_spring.MailPreparationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.email.from_spring Show documentation
Show all versions of greetgo.email.from_spring Show documentation
Sending emails with native java
The newest version!
package kz.greetgo.email.from_spring;
public class MailPreparationException extends MailException {
public MailPreparationException(String msg) {
super(msg);
}
public MailPreparationException(String msg, Throwable ex) {
super(msg, ex);
}
public MailPreparationException(Throwable ex) {
super("Could not prepare mail: " + ex.getMessage(), ex);
}
}