dataminer-pool-manager/src/main/java/org/gcube/dataanalysis/dataminer/poolmanager/util/exception/EMailException.java

29 lines
518 B
Java
Raw Normal View History

package org.gcube.dataanalysis.dataminer.poolmanager.util.exception;
2023-01-18 17:56:48 +01:00
public class EMailException extends Exception {
private static final String MESSAGE = "Unable to send email notification";
2023-01-18 17:56:48 +01:00
/**
*
2023-01-18 17:56:48 +01:00
*/
private static final long serialVersionUID = 1L;
2023-01-18 17:56:48 +01:00
public EMailException() {
super(MESSAGE);
2023-01-18 17:56:48 +01:00
}
2023-01-18 17:56:48 +01:00
public EMailException(String message) {
super(message);
2023-01-18 17:56:48 +01:00
}
2023-01-18 17:56:48 +01:00
public EMailException(String message, Throwable e) {
super(message, e);
2023-01-18 17:56:48 +01:00
}
2023-01-18 17:56:48 +01:00
public EMailException(Throwable e) {
super(MESSAGE, e);
2023-01-18 17:56:48 +01:00
}
2023-01-18 17:56:48 +01:00
}