// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: OutOfMemoryException
//
// Purpose: The exception class for OOM.
//
//=============================================================================
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) {
}
}
}