ArgumentNullException Class
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Class ArgumentNullException Inherits ArgumentException 'Usage Dim instance As ArgumentNullException
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public class ArgumentNullException extends ArgumentException
SerializableAttribute ComVisibleAttribute(true) public class ArgumentNullException extends ArgumentException
ArgumentNullException is thrown when a method is invoked and at least one of the passed arguments is a null reference (Nothing in Visual Basic) but should never be a null reference (Nothing in Visual Basic).
ArgumentNullException behaves identically to ArgumentException. It is provided so that application code can differentiate between exceptions caused by null arguments and exceptions caused by arguments that are not null. For errors caused by arguments that are not null, see ArgumentOutOfRangeException.
ArgumentNullException uses the HRESULT E_POINTER, which has the value 0x80004003.
For a list of initial property values for an instance of ArgumentNullException, see the ArgumentNullException constructors.
System.Exception
System.SystemException
System.ArgumentException
System.ArgumentNullException
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
ArgumentNullException MembersSystem Namespace
Exception