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

29 lines
653 B
Java
Executable File

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