Add extra files that should have been included in the previous commit.
[cfb.git] / prod / net / jaekl / cfb / store / StoreException.java
diff --git a/prod/net/jaekl/cfb/store/StoreException.java b/prod/net/jaekl/cfb/store/StoreException.java
new file mode 100644 (file)
index 0000000..5b7544d
--- /dev/null
@@ -0,0 +1,11 @@
+package net.jaekl.cfb.store;
+
+import net.jaekl.cfb.CfbException;
+
+public class StoreException extends CfbException {
+       private static final long serialVersionUID = 1L;
+       
+       public StoreException(String msg) {
+               super(msg);
+       }
+}