using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when a is interrupted while it is in a waiting state.
// Token: 0x02000333 RID: 819
[Token(Token = "0x2000333")]
[ComVisible(true)]
[Serializable]
public class ThreadInterruptedException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06001DDF RID: 7647 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001DDF")]
[Address(RVA = "0x1DA73F0", Offset = "0x1DA61F0", VA = "0x181DA73F0")]
public ThreadInterruptedException()
{
}
/// Initializes a new instance of the class with serialized data.
/// The that holds the serialized object data about the exception being thrown.
/// The that contains contextual information about the source or destination.
// Token: 0x06001DE0 RID: 7648 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001DE0")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
{
}
}
}