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

com.wudaosoft.commons.xml.XmlException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/* 
 * Copyright(c)2010-2016 WUDAOSOFT.COM
 * 
 * Email:[email protected]
 * 
 * QQ:275100589
 */ 
 
package com.wudaosoft.commons.xml;

/** 
 * @author Changsoul Wu
 * 
 */
public class XmlException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = -3472079661190010563L;

	/**
	 * 
	 */
	public XmlException() {
	}

	/**
	 * @param message
	 */
	public XmlException(String message) {
		super(message);
	}

	/**
	 * @param cause
	 */
	public XmlException(Throwable cause) {
		super(cause);
	}

	/**
	 * @param message
	 * @param cause
	 */
	public XmlException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy