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

29 lines
566 B
Java

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