ada3fe590c777e3f983232eaddfa559016a14fb9
[cfb.git] / 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 }