Files
2026-04-10 22:50:51 +02:00

40 lines
1.9 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when the execution stack overflows because it contains too many nested method calls. This class cannot be inherited.</summary>
// Token: 0x02000138 RID: 312
[Token(Token = "0x2000138")]
[ComVisible(true)]
[Serializable]
public sealed class StackOverflowException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.StackOverflowException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "The requested operation caused a stack overflow." This message takes into account the current system culture.</summary>
// Token: 0x06000BB6 RID: 2998 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BB6")]
[Address(RVA = "0x2C45170", Offset = "0x2C43F70", VA = "0x182C45170")]
public StackOverflowException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.StackOverflowException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
// Token: 0x06000BB7 RID: 2999 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BB7")]
[Address(RVA = "0x2C45140", Offset = "0x2C43F40", VA = "0x182C45140")]
public StackOverflowException(string message)
{
}
// Token: 0x06000BB8 RID: 3000 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BB8")]
[Address(RVA = "0x2C450C0", Offset = "0x2C43EC0", VA = "0x182C450C0")]
internal StackOverflowException(SerializationInfo info, StreamingContext context)
{
}
}
}