using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading.Tasks
{
/// Represents an exception used to communicate an invalid operation by a .
// Token: 0x02000398 RID: 920
[Token(Token = "0x2000398")]
[Serializable]
public class TaskSchedulerException : Exception
{
/// Initializes a new instance of the class with a system-supplied message that describes the error.
// Token: 0x06002021 RID: 8225 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002021")]
[Address(RVA = "0x1D9DBE0", Offset = "0x1D9C9E0", VA = "0x181D9DBE0")]
public TaskSchedulerException()
{
}
/// Initializes a new instance of the class using the default error message and a reference to the inner exception that is the cause of this exception.
/// The exception that is the cause of the current exception.
// Token: 0x06002022 RID: 8226 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002022")]
[Address(RVA = "0x1D9DC50", Offset = "0x1D9CA50", VA = "0x181D9DC50")]
public TaskSchedulerException(Exception innerException)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// 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)
{
}
}
}