Partial implementation of XML parse for FindBugs output
[cfb.git] / prod / net / jaekl / qd / xml / MissingAttributeException.java
1 package net.jaekl.qd.xml;
2
3 public class MissingAttributeException extends XmlParseException {
4         private static final long serialVersionUID = 1L;
5         
6         String m_tagName;
7         String m_attributeName;
8         
9         public MissingAttributeException(String tagName, String attributeName)
10         {
11                 m_tagName = tagName;
12                 m_attributeName = attributeName;
13         }
14 }