
microsoft.exchange.webservices.data.ArgumentNullException 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.
/**************************************************************************
* 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 - 2025 Weber Informatics LLC | Privacy Policy