36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>The exception that is thrown when a failure occurs in a managed thread after the underlying operating system thread has been started, but before the thread is ready to execute user code.</summary>
|
|
// Token: 0x02000623 RID: 1571
|
|
[Serializable]
|
|
public sealed class ThreadStartException : SystemException
|
|
{
|
|
// Token: 0x060039C4 RID: 14788 RVA: 0x000C63F0 File Offset: 0x000C45F0
|
|
internal ThreadStartException()
|
|
: base("Thread Start Error")
|
|
{
|
|
}
|
|
|
|
// Token: 0x060039C5 RID: 14789 RVA: 0x000C6400 File Offset: 0x000C4600
|
|
internal ThreadStartException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060039C6 RID: 14790 RVA: 0x000C640C File Offset: 0x000C460C
|
|
internal ThreadStartException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060039C7 RID: 14791 RVA: 0x000C6418 File Offset: 0x000C4618
|
|
internal ThreadStartException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|