using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Threading
{
/// The exception that is thrown when a call is made to the method. This class cannot be inherited.
/// 2
// Token: 0x0200061F RID: 1567
[ComVisible(true)]
[Serializable]
public sealed class ThreadAbortException : SystemException
{
// Token: 0x060039B2 RID: 14770 RVA: 0x000C62A0 File Offset: 0x000C44A0
private ThreadAbortException()
: base("Thread was being aborted")
{
base.HResult = -2146233040;
}
// Token: 0x060039B3 RID: 14771 RVA: 0x000C62B8 File Offset: 0x000C44B8
private ThreadAbortException(SerializationInfo info, StreamingContext sc)
: base(info, sc)
{
}
}
}