Rename GCR to ACR.
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / gcr / ContentResourceException.java
diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentResourceException.java b/org.argeo.api/src/org/argeo/api/gcr/ContentResourceException.java
deleted file mode 100644 (file)
index fa7195e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.argeo.api.gcr;
-
-/**
- * When there is a problem the underlying resources, typically IO, network, DB
- * access, etc.
- */
-public class ContentResourceException extends IllegalStateException {
-       private static final long serialVersionUID = -2850145213683756996L;
-
-       public ContentResourceException() {
-       }
-
-       public ContentResourceException(String s) {
-               super(s);
-       }
-
-       public ContentResourceException(Throwable cause) {
-               super(cause);
-       }
-
-       public ContentResourceException(String message, Throwable cause) {
-               super(message, cause);
-       }
-
-}