This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,35 @@
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)
{
}
}
}