using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when a requested method or operation is not implemented. // Token: 0x0200011F RID: 287 [Token(Token = "0x200011F")] [ComVisible(true)] [Serializable] public class NotImplementedException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06000A71 RID: 2673 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A71")] [Address(RVA = "0x26028D0", Offset = "0x26016D0", VA = "0x1826028D0")] public NotImplementedException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x06000A72 RID: 2674 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A72")] [Address(RVA = "0x2602930", Offset = "0x2601730", VA = "0x182602930")] public NotImplementedException(string message) { } /// Initializes a new instance of the class with serialized data. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x06000A73 RID: 2675 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A73")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected NotImplementedException(SerializationInfo info, StreamingContext context) { } } }