using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when there is not enough memory to continue the execution of a program.
// Token: 0x0200012E RID: 302
[Token(Token = "0x200012E")]
[ComVisible(true)]
[Serializable]
public class OutOfMemoryException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000AEB RID: 2795 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AEB")]
[Address(RVA = "0x2D78EA0", Offset = "0x2D77EA0", VA = "0x182D78EA0")]
public OutOfMemoryException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000AEC RID: 2796 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AEC")]
[Address(RVA = "0x2D78F10", Offset = "0x2D77F10", VA = "0x182D78F10")]
public OutOfMemoryException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x06000AED RID: 2797 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AED")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected OutOfMemoryException(SerializationInfo info, StreamingContext context)
{
}
}
}