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

xmlwise.XmlParseException Maven / Gradle / Ivy

There is a newer version: 1.8.2
Show newest version
package xmlwise;

/**
 * Generic exception when parsing XML.
 *
 * @author Christoffer Lerno
 */
public class XmlParseException extends Exception
{
	private static final long serialVersionUID = -3246260520113823143L;

	XmlParseException(final Throwable cause)
	{
		super(cause);
	}

	XmlParseException(final String message)
	{
		super(message);
	}

	XmlParseException(final String message, final Throwable cause)
	{
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy