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: 0x02000635 RID: 1589 [Token(Token = "0x2000635")] [ComVisible(true)] [Serializable] public class KeyNotFoundException : SystemException, ISerializable { /// Initializes a new instance of the class using default property values. // Token: 0x0600312E RID: 12590 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600312E")] [Address(RVA = "0x2C42200", Offset = "0x2C41200", VA = "0x182C42200")] public KeyNotFoundException() { } /// Initializes a new instance of the class with the specified error message. /// The message that describes the error. // Token: 0x0600312F RID: 12591 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600312F")] [Address(RVA = "0x2C421D0", Offset = "0x2C411D0", VA = "0x182C421D0")] 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: 0x06003130 RID: 12592 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6003130")] [Address(RVA = "0x2C421A0", Offset = "0x2C411A0", VA = "0x182C421A0")] 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: 0x06003131 RID: 12593 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6003131")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] protected KeyNotFoundException(SerializationInfo info, StreamingContext context) { } } }