Avoid unit test failures when cfb.properties is not found in the classpath.
[cfb.git] / prod / net / jaekl / cfb / CfbException.java
1 package net.jaekl.cfb;
2
3 public class CfbException extends Exception {
4         private static final long serialVersionUID = 1L;
5
6         public CfbException() {
7                 super();
8         }
9         
10         public CfbException(String msg) {
11                 super(msg);
12         }
13 }