Partial implementation of XML parse for FindBugs output
[cfb.git] / prod / net / jaekl / qd / xml / XmlParseException.java
1 package net.jaekl.qd.xml;
2
3 import net.jaekl.qd.QDException;
4
5 public class XmlParseException extends QDException 
6 {
7         private static final long serialVersionUID = 1L;
8
9         public XmlParseException() {
10                 // no-op
11         }
12         
13         public XmlParseException(Throwable t) {
14                 super(t);
15         }
16
17 }