accounting-lib/src/main/java/org/gcube/accounting/exception/ExcludeException.java

29 lines
491 B
Java

/**
*
*/
package org.gcube.accounting.exception;
/**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
*
*/
public class ExcludeException extends Exception {
/**
* Generated serial Version UID
*/
private static final long serialVersionUID = -4512534842977294L;
public ExcludeException() {
super();
}
public ExcludeException(String message) {
super(message);
}
public ExcludeException(String message, Throwable cause) {
super(message, cause);
}
}