Partial implementation of XML parse for FindBugs output
[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(Throwable t) {
12                 super(t);
13         }
14 }