microsoft.exchange.webservices.data.XmlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exchange-ws-api Show documentation
Show all versions of exchange-ws-api Show documentation
The source came from http://archive.msdn.microsoft.com/ewsjavaapi
Support for Maven has been added.
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 - 2025 Weber Informatics LLC | Privacy Policy