using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when trying to access a drive or share that is not available. // Token: 0x02000284 RID: 644 [Token(Token = "0x2000284")] [ComVisible(true)] [Serializable] public class DriveNotFoundException : 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: 0x0600176B RID: 5995 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176B")] [Address(RVA = "0x29347A0", Offset = "0x29335A0", VA = "0x1829347A0")] public DriveNotFoundException() { } /// Initializes a new instance of the class with the specified message string and the HRESULT set to COR_E_DIRECTORYNOTFOUND. /// A object that describes the error. The caller of this constructor is required to ensure that this string has been localized for the current system culture. // Token: 0x0600176C RID: 5996 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176C")] [Address(RVA = "0x2932CF0", Offset = "0x2931AF0", VA = "0x182932CF0")] public DriveNotFoundException(string message) { } /// Initializes a new instance of the class with the specified serialization and context information. /// A object that contains the serialized object data about the exception being thrown. /// A object that contains contextual information about the source or destination of the exception being thrown. // Token: 0x0600176D RID: 5997 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176D")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected DriveNotFoundException(SerializationInfo info, StreamingContext context) { } } }