| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // See the LICENSE file in the project root for more information.
- /*=============================================================================
- **
- **
- **
- ** Purpose: Exception class for null arguments to a method.
- **
- **
- =============================================================================*/
- using System.Runtime.Serialization;
- namespace System
- {
- // The ArgumentException is thrown when an argument
- // is null when it shouldn't be.
- [Serializable]
- [System.Runtime.CompilerServices.TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
- public class ArgumentNullException : ArgumentException
- {
- // Creates a new ArgumentNullException with its message
- // string set to a default message explaining an argument was null.
- public ArgumentNullException()
- : base(SR.ArgumentNull_Generic)
- {
- // Use E_POINTER - COM used that for null pointers. Description is "invalid pointer"
- HResult = HResults.E_POINTER;
- }
- public ArgumentNullException(string paramName)
- : base(SR.ArgumentNull_Generic, paramName)
- {
- HResult = HResults.E_POINTER;
- }
- public ArgumentNullException(string message, Exception innerException)
- : base(message, innerException)
- {
- HResult = HResults.E_POINTER;
- }
- public ArgumentNullException(string paramName, string message)
- : base(message, paramName)
- {
- HResult = HResults.E_POINTER;
- }
- protected ArgumentNullException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- }
- }
|