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: 0x02000127 RID: 295
[Token(Token = "0x2000127")]
[ComVisible(true)]
[Serializable]
public class OutOfMemoryException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000AB9 RID: 2745 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AB9")]
[Address(RVA = "0x2A13FE0", Offset = "0x2A12DE0", VA = "0x182A13FE0")]
public OutOfMemoryException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000ABA RID: 2746 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABA")]
[Address(RVA = "0x2A14050", Offset = "0x2A12E50", VA = "0x182A14050")]
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: 0x06000ABB RID: 2747 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABB")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected OutOfMemoryException(SerializationInfo info, StreamingContext context)
{
}
}
}