microsoft.exchange.webservices.data.NotSupportedException 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.
The newest version!
package microsoft.exchange.webservices.data;
public class NotSupportedException extends Exception {
/**
* Instantiates a new argument exception.
*/
public NotSupportedException() {
super();
}
/**
* Instantiates a new NotSupported exception.
*
* @param strMessage
* the str message
*/
public NotSupportedException(String strMessage) {
super(strMessage);
}
}