This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,28 @@
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)
{
}
}
}