using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when part of a file or directory cannot be found. // Token: 0x02000283 RID: 643 [Token(Token = "0x2000283")] [ComVisible(true)] [Serializable] public class DirectoryNotFoundException : IOException { /// Initializes a new instance of the class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND. // Token: 0x06001768 RID: 5992 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001768")] [Address(RVA = "0x2932C80", Offset = "0x2931A80", VA = "0x182932C80")] public DirectoryNotFoundException() { } /// Initializes a new instance of the class with its message string set to and its HRESULT set to COR_E_DIRECTORYNOTFOUND. /// 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: 0x06001769 RID: 5993 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001769")] [Address(RVA = "0x2932CF0", Offset = "0x2931AF0", VA = "0x182932CF0")] public DirectoryNotFoundException(string message) { } /// Initializes a new instance of the class with the specified serialization and context information. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x0600176A RID: 5994 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176A")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context) { } } }