// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: NullReferenceException
**
**
** Purpose: Exception class for dereferencing a null reference.
**
** Date: March 17, 1998
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.CompilerServices;
//|
[RequiredByBartok]
public class NullReferenceException : SystemException {
//|
[AccessedByRuntime("referenced from halasm.asm")]
public NullReferenceException()
: base("Arg_NullReferenceException") {
}
//|
public NullReferenceException(String message)
: base(message) {
}
//|
public NullReferenceException(String message, Exception innerException)
: base(message, innerException) {
}
}
}