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

27 lines
471 B
Java
Executable File

package org.gcube.dataanalysis.dataminer.poolmanager.util.exception;
public class AlgorithmException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5678597187512954288L;
public AlgorithmException ()
{
super ();
***REMOVED***
public AlgorithmException (String message)
{
super (message);
***REMOVED***
public AlgorithmException (String message, Throwable cause)
{
super (message, cause);
***REMOVED***
***REMOVED***