using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality. // Token: 0x02000120 RID: 288 [Token(Token = "0x2000120")] [ComVisible(true)] [Serializable] public class NotSupportedException : SystemException { /// Initializes a new instance of the class, setting the property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture. // Token: 0x06000A74 RID: 2676 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A74")] [Address(RVA = "0x2602990", Offset = "0x2601790", VA = "0x182602990")] public NotSupportedException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. The content of is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. // Token: 0x06000A75 RID: 2677 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A75")] [Address(RVA = "0x26029F0", Offset = "0x26017F0", VA = "0x1826029F0")] public NotSupportedException(string message) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not a null reference, the current exception is raised in a block that handles the inner exception. // Token: 0x06000A76 RID: 2678 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A76")] [Address(RVA = "0x2602960", Offset = "0x2601760", VA = "0x182602960")] public NotSupportedException(string message, 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: 0x06000A77 RID: 2679 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A77")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected NotSupportedException(SerializationInfo info, StreamingContext context) { } } }