25 lines
631 B
C#
25 lines
631 B
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"]/*' />
|
|
[RequiredByBartok]
|
|
public partial class NullReferenceException : SystemException {
|
|
}
|
|
}
|