2.2.8 ArgumentNullException

ArgumentNullException is a Derived Class of ArgumentException. The Library name of the Class is "mscorlib". When thrown from a Remote Method, it indicates that a required argument of the Remote Method was a Null Object. There are no Members other than the Members inherited from the System.ArgumentException Class. This Class has an additional constraint: the HResult member MUST be hex value 0x80004003.

 namespace System
 {
     class ArgumentNullException : System.ArgumentException
     {
     }
 }