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

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

Go to download

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

There is a newer version: 1.1.5.2
Show newest version
/**************************************************************************
 * copyright file="AutodiscoverLocalException.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the AutodiscoverLocalException.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/**
 * Represents an exception that is thrown when the Autodiscover service could
 * not be contacted.
 */
public class AutodiscoverLocalException extends ServiceLocalException {

	/**
	 * Initializes a new instance of the class.
	 */
	public AutodiscoverLocalException() {
		super();
	}

	/**
	 * Initializes a new instance of the class.
	 * 
	 * @param message
	 *            the message
	 */
	public AutodiscoverLocalException(String message) {
		super(message);
	}

	/**
	 * Initializes a new instance of the class.
	 * 
	 * @param message
	 *            the message
	 * @param innerException
	 *            the inner exception
	 */
	public AutodiscoverLocalException(String message, 
			Exception innerException) {
		super(message, innerException);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy