using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Thrown when a thread on which an operation should execute no longer exists or has no message loop.
// Token: 0x02000150 RID: 336
[Token(Token = "0x2000150")]
[Serializable]
public class InvalidAsynchronousStateException : ArgumentException
{
/// Initializes a new instance of the class.
// Token: 0x06000816 RID: 2070 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000816")]
[Address(RVA = "0x4EF7E0", Offset = "0x4EE5E0", VA = "0x1804EF7E0")]
public InvalidAsynchronousStateException()
{
}
/// Initializes a new instance of the class with the specified detailed description.
/// A detailed description of the error.
// Token: 0x06000817 RID: 2071 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000817")]
[Address(RVA = "0x4EF7A0", Offset = "0x4EE5A0", VA = "0x1804EF7A0")]
public InvalidAsynchronousStateException(string message)
{
}
/// Initializes a new instance of the class with the specified detailed description and the specified exception.
/// A detailed description of the error.
/// A reference to the inner exception that is the cause of this exception.
// Token: 0x06000818 RID: 2072 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000818")]
[Address(RVA = "0x4EF7D0", Offset = "0x4EE5D0", VA = "0x1804EF7D0")]
public InvalidAsynchronousStateException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class with the given and .
/// The to be used for deserialization.
/// The destination to be used for deserialization.
// Token: 0x06000819 RID: 2073 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000819")]
[Address(RVA = "0x4EF7B0", Offset = "0x4EE5B0", VA = "0x1804EF7B0")]
protected InvalidAsynchronousStateException(SerializationInfo info, StreamingContext context)
{
}
}
}