name.pehl.totoe.xml.client.XmlParseException Maven / Gradle / Ivy
package name.pehl.totoe.xml.client;
/**
* Exception thrown by {@link XmlParser#parse(String)} methods.
*
* @author $Author$
* @version $Date$ $Revision: 174
* $
*/
@SuppressWarnings("serial")
public class XmlParseException extends RuntimeException
{
public XmlParseException()
{
}
public XmlParseException(String message)
{
super(message);
}
public XmlParseException(Throwable cause)
{
super(cause);
}
public XmlParseException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy