singrdk/base/Applications/Runtime/Full/System/NullReferenceException.cs

40 lines
1.3 KiB
C#

// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: NullReferenceException
//
// Purpose: Exception class for dereferencing a null reference.
//
//=============================================================================
namespace System
{
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="NullReferenceException"]/*' />
[AccessedByRuntime("referenced from halasm.asm")]
public partial class NullReferenceException : SystemException {
//| <include path='docs/doc[@for="NullReferenceException.NullReferenceException"]/*' />
[AccessedByRuntime("referenced from halasm.asm")]
public NullReferenceException()
: base("Arg_NullReferenceException") {
}
//| <include path='docs/doc[@for="NullReferenceException.NullReferenceException1"]/*' />
public NullReferenceException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="NullReferenceException.NullReferenceException2"]/*' />
public NullReferenceException(String message, Exception innerException)
: base(message, innerException) {
}
}
}