refs #200: Create accouting-lib library

https://support.d4science.org/issues/200
Removed uneeded classes

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-lib@115388 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2015-06-15 13:44:15 +00:00
parent b80b34da8d
commit 2c40f74786
2 changed files with 0 additions and 57 deletions

View File

@ -1,29 +0,0 @@
/**
*
*/
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);
}
}

View File

@ -1,28 +0,0 @@
/**
*
*/
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);
}
}