28 lines
842 B
C#
28 lines
842 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>The exception that is thrown when a call is made to the <see cref="M:System.Threading.Thread.Abort(System.Object)" /> method. This class cannot be inherited.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// 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)
|
|
{
|
|
}
|
|
}
|
|
}
|