Add a bare-bones implementation of SMTP.
[cfb.git] / prod / net / jaekl / qd / QDException.java
index f5478c1157fd3dc4c94d8cab8ccfb4c3688509f7..a12aa9c044e6c3041c9a480d184f42330db75bd5 100644 (file)
@@ -8,6 +8,10 @@ public class QDException extends Exception
                super();
        }
        
+       public QDException(String msg) {
+               super(msg);
+       }
+       
        public QDException(Throwable t) {
                super(t);
        }