All Downloads are FREE. Search and download functionalities are using the official Maven repository.

name.pehl.totoe.xml.client.XmlParseException Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
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