29 lines
1.0 KiB
C#
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: 0x0200010C RID: 268
|
|
[Token(Token = "0x200010C")]
|
|
[Serializable]
|
|
public sealed class InsufficientExecutionStackException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.InsufficientExecutionStackException" /> class.</summary>
|
|
// Token: 0x060009B6 RID: 2486 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60009B6")]
|
|
[Address(RVA = "0x25F9DE0", Offset = "0x25F8BE0", VA = "0x1825F9DE0")]
|
|
public InsufficientExecutionStackException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060009B7 RID: 2487 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60009B7")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
private InsufficientExecutionStackException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|