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