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: 0x02000398 RID: 920
|
|
[Token(Token = "0x2000398")]
|
|
[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: 0x06002021 RID: 8225 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002021")]
|
|
[Address(RVA = "0x1D9DBE0", Offset = "0x1D9C9E0", VA = "0x181D9DBE0")]
|
|
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: 0x06002022 RID: 8226 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002022")]
|
|
[Address(RVA = "0x1D9DC50", Offset = "0x1D9CA50", VA = "0x181D9DC50")]
|
|
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: 0x06002023 RID: 8227 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002023")]
|
|
[Address(RVA = "0x1D9DB60", Offset = "0x1D9C960", VA = "0x181D9DB60")]
|
|
protected TaskSchedulerException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|