Add a bare-bones implementation of SMTP.
[cfb.git] / prod / net / jaekl / qd / QDException.java
1 package net.jaekl.qd;
2
3 public class QDException extends Exception
4 {
5         private static final long serialVersionUID = 1L;
6
7         public QDException() {
8                 super();
9         }
10         
11         public QDException(String msg) {
12                 super(msg);
13         }
14         
15         public QDException(Throwable t) {
16                 super(t);
17         }
18 }