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

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

/**
 * The Class ArgumentNullException.
 */
public class ArgumentNullException extends Exception {

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

	/**
	 * Instantiates a new argument null exception.
	 * 
	 * @param arg0
	 *            the arg0
	 * @param arg1
	 *            the arg1
	 */
	public ArgumentNullException(final String arg0, final Throwable arg1) {
		super(arg0, arg1);
		
	}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy