Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/InsufficientExecutionStackException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
1.0 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is insufficient execution stack available to allow most methods to execute.</summary>
// Token: 0x02000113 RID: 275
[Token(Token = "0x2000113")]
[Serializable]
public sealed class InsufficientExecutionStackException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.InsufficientExecutionStackException" /> class.</summary>
// Token: 0x060009E0 RID: 2528 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009E0")]
[Address(RVA = "0xCBE740", Offset = "0xCBD740", VA = "0x180CBE740")]
public InsufficientExecutionStackException()
{
}
// Token: 0x060009E1 RID: 2529 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009E1")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
private InsufficientExecutionStackException(SerializationInfo info, StreamingContext context)
{
}
}
}