41 lines
1.9 KiB
C#
41 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading.Tasks
|
|
{
|
|
/// <summary>Represents an exception used to communicate an invalid operation by a <see cref="T:System.Threading.Tasks.TaskScheduler" />.</summary>
|
|
// Token: 0x020003B4 RID: 948
|
|
[Token(Token = "0x20003B4")]
|
|
[Serializable]
|
|
public class TaskSchedulerException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.TaskSchedulerException" /> class with a system-supplied message that describes the error.</summary>
|
|
// Token: 0x0600222D RID: 8749 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600222D")]
|
|
[Address(RVA = "0xB48C90", Offset = "0xB47C90", VA = "0x180B48C90")]
|
|
public TaskSchedulerException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.TaskSchedulerException" /> class using the default error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
/// <param name="innerException">The exception that is the cause of the current exception.</param>
|
|
// Token: 0x0600222E RID: 8750 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600222E")]
|
|
[Address(RVA = "0xB48D00", Offset = "0xB47D00", VA = "0x180B48D00")]
|
|
public TaskSchedulerException(Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.TaskSchedulerException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x0600222F RID: 8751 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600222F")]
|
|
[Address(RVA = "0xB48C10", Offset = "0xB47C10", VA = "0x180B48C10")]
|
|
protected TaskSchedulerException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|