Add extra files that should have been included in the previous commit.
[cfb.git] / prod / net / jaekl / cfb / store / StoreException.java
1 package net.jaekl.cfb.store;
2
3 import net.jaekl.cfb.CfbException;
4
5 public class StoreException extends CfbException {
6         private static final long serialVersionUID = 1L;
7         
8         public StoreException(String msg) {
9                 super(msg);
10         }
11 }