OutputVar := new MfIO.DriveNotFoundException()
OutputVar := new MfIO.DriveNotFoundException(message)
OutputVar := new MfIO.DriveNotFoundException(message, innerException)
Initializes a new instance of the DriveNotFoundException class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND.
This constructor initializes the Message property of the new instance to a system-supplied message that describes the error, such as "Could not find the specified directory."
Initializes a new instance of the DriveNotFoundException class with the specified message string and the HRESULT set to COR_E_DIRECTORYNOTFOUND.
message
The error message that explains the reason for the exception.
Can be instance of MfString or var containing string. MfString
This constructor initializes the Message property of the new instance using the message parameter.
The InnerException property of the new instance is initialized to Nothing.
Initializes a new instance of the DriveNotFoundException class with the specified error message and a reference to the inner exception that is the cause of this exception.
message
The error message that explains the reason for the exception.
Can be instance of MfString or var containing string. MfString
innerException
The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
Can be AutoHotkey Exception or any MfException instance or derived class instance.
An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or Null if the InnerException property does not supply the inner exception value to the constructor.