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