Add further unit tests.
[cfb.git] / prod / net / jaekl / cfb / CfbException.java
index 6b46797be126b42a05a4b9446eb3aa676227c640..b280c1d0e79fc77dfae6d6c7cb2f56c5ae0b41e3 100644 (file)
@@ -10,4 +10,8 @@ public class CfbException extends Exception {
        public CfbException(String msg) {
                super(msg);
        }
+
+       public CfbException(Throwable cause) {
+               super(cause);
+       }
 }