Rename GCR to ACR.
[lgpl/argeo-commons.git] / org.argeo.api / src / org / argeo / api / gcr / ContentFeatureUnsupportedException.java
diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java b/org.argeo.api/src/org/argeo/api/gcr/ContentFeatureUnsupportedException.java
deleted file mode 100644 (file)
index 0e97a24..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.argeo.api.gcr;
-
-/** When a feature is not supported by the underlying repository. */
-public class ContentFeatureUnsupportedException extends UnsupportedOperationException {
-       private static final long serialVersionUID = 3193936026343114949L;
-
-       public ContentFeatureUnsupportedException() {
-       }
-
-       public ContentFeatureUnsupportedException(String message) {
-               super(message);
-       }
-
-       public ContentFeatureUnsupportedException(Throwable cause) {
-               super(cause);
-       }
-
-       public ContentFeatureUnsupportedException(String message, Throwable cause) {
-               super(message, cause);
-       }
-
-}