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

microsoft.exchange.webservices.data.XmlException Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
package microsoft.exchange.webservices.data;

public class XmlException extends Exception {

	/**
	 * Instantiates a new argument exception.
	 */
	public XmlException() {
		super();
		
	}

	/**
	 * Instantiates a new argument exception.
	 * 
	 * @param arg0
	 *            the arg0
	 */
	public XmlException(final String arg0) {
		super(arg0);
		
	}

	/**
	 * ServiceXmlDeserializationException Constructor.
	 * 
	 * @param message
	 *            the message
	 * @param innerException
	 *            the inner exception
	 */
	public XmlException(String message, Exception innerException) {
		super(message, innerException);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy