using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Collections.Generic { /// The exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection. // Token: 0x02000614 RID: 1556 [Token(Token = "0x2000614")] [ComVisible(true)] [Serializable] public class KeyNotFoundException : SystemException, ISerializable { /// Initializes a new instance of the class using default property values. // Token: 0x06002F16 RID: 12054 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002F16")] [Address(RVA = "0x2544850", Offset = "0x2543650", VA = "0x182544850")] public KeyNotFoundException() { } /// Initializes a new instance of the class with the specified error message. /// The message that describes the error. // Token: 0x06002F17 RID: 12055 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002F17")] [Address(RVA = "0x2544820", Offset = "0x2543620", VA = "0x182544820")] public KeyNotFoundException(string message) { } /// Initializes a new instance of the class with the 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 , the current exception is raised in a block that handles the inner exception. // Token: 0x06002F18 RID: 12056 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002F18")] [Address(RVA = "0x25447F0", Offset = "0x25435F0", VA = "0x1825447F0")] public KeyNotFoundException(string message, Exception innerException) { } /// 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: 0x06002F19 RID: 12057 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002F19")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected KeyNotFoundException(SerializationInfo info, StreamingContext context) { } } }