Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

43 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is not enough memory to continue the execution of a program.</summary>
// Token: 0x0200012E RID: 302
[Token(Token = "0x200012E")]
[ComVisible(true)]
[Serializable]
public class OutOfMemoryException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class.</summary>
// Token: 0x06000AEB RID: 2795 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AEB")]
[Address(RVA = "0x2D78EA0", Offset = "0x2D77EA0", VA = "0x182D78EA0")]
public OutOfMemoryException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000AEC RID: 2796 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AEC")]
[Address(RVA = "0x2D78F10", Offset = "0x2D77F10", VA = "0x182D78F10")]
public OutOfMemoryException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.OutOfMemoryException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// 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)
{
}
}
}