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

20 lines
402 B
Java
Executable File

package org.gcube.dataanalysis.dataminer.poolmanager.util.exception;
public class EMailException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public EMailException() {
super ("Unable to send email notification");
***REMOVED***
public EMailException(Throwable cause) {
super ("Unable to send email notification",cause);
***REMOVED***
***REMOVED***