using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Threading.Tasks { /// Represents an exception used to communicate an invalid operation by a . // Token: 0x020003B4 RID: 948 [Token(Token = "0x20003B4")] [Serializable] public class TaskSchedulerException : Exception { /// Initializes a new instance of the class with a system-supplied message that describes the error. // Token: 0x0600222D RID: 8749 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600222D")] [Address(RVA = "0xB48C90", Offset = "0xB47C90", VA = "0x180B48C90")] 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: 0x0600222E RID: 8750 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600222E")] [Address(RVA = "0xB48D00", Offset = "0xB47D00", VA = "0x180B48D00")] 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: 0x0600222F RID: 8751 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600222F")] [Address(RVA = "0xB48C10", Offset = "0xB47C10", VA = "0x180B48C10")] protected TaskSchedulerException(SerializationInfo info, StreamingContext context) { } } }