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