![JAR search and dependency download from the Maven repository](/logo.png)
org.dromara.email.comm.errors.MailException Maven / Gradle / Ivy
The newest version!
package org.dromara.email.comm.errors;
public class MailException extends RuntimeException {
public MailException() {
super();
}
public MailException(String message) {
super(message);
}
public MailException(String message, Throwable cause) {
super(message, cause);
}
public MailException(Throwable cause) {
super(cause);
}
protected MailException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy