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: 0x0200028A RID: 650 [Token(Token = "0x200028A")] [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: 0x060017A7 RID: 6055 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017A7")] [Address(RVA = "0x2BAA610", Offset = "0x2BA9610", VA = "0x182BAA610")] 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: 0x060017A8 RID: 6056 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017A8")] [Address(RVA = "0x2BAA670", Offset = "0x2BA9670", VA = "0x182BAA670")] 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: 0x060017A9 RID: 6057 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017A9")] [Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")] protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context) { } } }