First draft of file system based GCR
[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
new file mode 100644 (file)
index 0000000..0e97a24
--- /dev/null
@@ -0,0 +1,22 @@
+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);
+       }
+
+}