// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: OutOfMemoryException
**
**
** Purpose: The exception class for OOM.
**
** Date: March 17, 1998
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.CompilerServices;
//|
public class OutOfMemoryException : SystemException {
//|
public OutOfMemoryException()
: base("Arg_OutOfMemoryException") {
}
//|
public OutOfMemoryException(String message)
: base(message) {
}
//|
public OutOfMemoryException(String message, Exception innerException)
: base(message, innerException) {
}
}
}