From 2c40f74786a80721c0561ea36d458af5a428c6b9 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Mon, 15 Jun 2015 13:44:15 +0000 Subject: [PATCH] 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 --- .../exception/ExcludeException.java | 29 ------------------- .../InternallyReservedKeywordException.java | 28 ------------------ 2 files changed, 57 deletions(-) delete mode 100644 src/main/java/org/gcube/accounting/exception/ExcludeException.java delete mode 100644 src/main/java/org/gcube/accounting/exception/InternallyReservedKeywordException.java diff --git a/src/main/java/org/gcube/accounting/exception/ExcludeException.java b/src/main/java/org/gcube/accounting/exception/ExcludeException.java deleted file mode 100644 index bdfb700..0000000 --- a/src/main/java/org/gcube/accounting/exception/ExcludeException.java +++ /dev/null @@ -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); - } - -} \ No newline at end of file diff --git a/src/main/java/org/gcube/accounting/exception/InternallyReservedKeywordException.java b/src/main/java/org/gcube/accounting/exception/InternallyReservedKeywordException.java deleted file mode 100644 index 7ffd097..0000000 --- a/src/main/java/org/gcube/accounting/exception/InternallyReservedKeywordException.java +++ /dev/null @@ -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); - } -}