Further unit tests: getVar()
[cfb.git] / prod / net / jaekl / cfb / CfbException.java
index b8a14c0a5cce56ac67597ecf3768139360656f6d..b280c1d0e79fc77dfae6d6c7cb2f56c5ae0b41e3 100644 (file)
@@ -3,7 +3,15 @@ package net.jaekl.cfb;
 public class CfbException extends Exception {
        private static final long serialVersionUID = 1L;
 
+       public CfbException() {
+               super();
+       }
+       
        public CfbException(String msg) {
                super(msg);
        }
+
+       public CfbException(Throwable cause) {
+               super(cause);
+       }
 }