Partial implementation of XML parse for FindBugs output
[cfb.git] / prod / net / jaekl / qd / xml / MismatchedTagsException.java
1 // Copyright (C) 2004, 2014 Christian Jaekl
2
3 package net.jaekl.qd.xml;
4
5
6 public class MismatchedTagsException extends XmlParseException
7 {
8         private static final long serialVersionUID = 1L;
9
10         String m_expected;
11         String m_actual;
12
13         public MismatchedTagsException(String expected, String actual) {
14                 super();
15                 m_expected = expected;
16                 m_actual = actual;
17         }
18
19         public String getExpected() { return m_expected; }
20         public String getActual() { return m_actual; }
21 }