using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when a method call is invalid for the object's current state.
// Token: 0x02000111 RID: 273
[Token(Token = "0x2000111")]
[ComVisible(true)]
[Serializable]
public class InvalidOperationException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000A17 RID: 2583 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A17")]
[Address(RVA = "0x25FC170", Offset = "0x25FAF70", VA = "0x1825FC170")]
public InvalidOperationException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000A18 RID: 2584 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A18")]
[Address(RVA = "0x25FC1D0", Offset = "0x25FAFD0", VA = "0x1825FC1D0")]
public InvalidOperationException(string message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not a null reference ( in Visual Basic), the current exception is raised in a block that handles the inner exception.
// 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)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// 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)
{
}
}
}