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

microsoft.exchange.webservices.data.DnsException 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!
/**************************************************************************
 * copyright file="DnsException.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the DnsException.java.
 **************************************************************************/

package microsoft.exchange.webservices.data;

/**
 * Defines DnsException class.
 */
class DnsException extends Exception {

	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 1L;

	/** The exception. */
	String exception;

	/**
	 * Instantiates a new dns exception.
	 * 
	 * @param exceptionMessage
	 *            the exception message
	 */
	protected DnsException(String exceptionMessage) {
		exception = exceptionMessage;

	}

	/**
	 * Gets the error.
	 * 
	 * @return the error
	 */
	protected String getError() {
		return exception;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy