Files
Aug2021-Cpp2IL-Dump/mscorlib/System/InvalidOperationException.cs
2026-04-10 22:50:51 +02:00

53 lines
2.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when a method call is invalid for the object's current state.</summary>
// Token: 0x02000111 RID: 273
[Token(Token = "0x2000111")]
[ComVisible(true)]
[Serializable]
public class InvalidOperationException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class.</summary>
// Token: 0x06000A17 RID: 2583 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A17")]
[Address(RVA = "0x25FC170", Offset = "0x25FAF70", VA = "0x1825FC170")]
public InvalidOperationException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000A18 RID: 2584 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A18")]
[Address(RVA = "0x25FC1D0", Offset = "0x25FAFD0", VA = "0x1825FC1D0")]
public InvalidOperationException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06000A19 RID: 2585 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A19")]
[Address(RVA = "0x25FC200", Offset = "0x25FB000", VA = "0x1825FC200")]
public InvalidOperationException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.InvalidOperationException" /> 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: 0x06000A1A RID: 2586 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A1A")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected InvalidOperationException(SerializationInfo info, StreamingContext context)
{
}
}
}