using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Threading
{
/// The exception that is thrown when a is interrupted while it is in a waiting state.
/// 2
// Token: 0x02000620 RID: 1568
[ComVisible(true)]
[Serializable]
public class ThreadInterruptedException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x060039B4 RID: 14772 RVA: 0x000C62C4 File Offset: 0x000C44C4
public ThreadInterruptedException()
: base("Thread interrupted")
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x060039B5 RID: 14773 RVA: 0x000C62D4 File Offset: 0x000C44D4
public ThreadInterruptedException(string message)
: base(message)
{
}
/// 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: 0x060039B6 RID: 14774 RVA: 0x000C62E0 File Offset: 0x000C44E0
protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
/// 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 null, the current exception is raised in a catch block that handles the inner exception.
// Token: 0x060039B7 RID: 14775 RVA: 0x000C62EC File Offset: 0x000C44EC
public ThreadInterruptedException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}