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: 0x02000118 RID: 280 [Token(Token = "0x2000118")] [ComVisible(true)] [Serializable] public class InvalidOperationException : SystemException { /// Initializes a new instance of the class. // Token: 0x06000A41 RID: 2625 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A41")] [Address(RVA = "0x2D67EC0", Offset = "0x2D66EC0", VA = "0x182D67EC0")] public InvalidOperationException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000A42 RID: 2626 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A42")] [Address(RVA = "0x2D67F20", Offset = "0x2D66F20", VA = "0x182D67F20")] 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: 0x06000A43 RID: 2627 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A43")] [Address(RVA = "0x2D67F50", Offset = "0x2D66F50", VA = "0x182D67F50")] 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: 0x06000A44 RID: 2628 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A44")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] protected InvalidOperationException(SerializationInfo info, StreamingContext context) { } } }