Constructor()

Namespace ›› System.MfIO ›› IOException ›› Methods ››
Parent Previous Next

Constructor()

OutputVar := new MfIO.IOException()
OutputVar := new MfIO.IOException(message)
OutputVar := new MfIO.IOException(message, innerException)
OutputVar := new MfIO.IOException(message, hresult)

Constructor()

Initializes a new instance of the IOException class with its message string set to the empty string (""), its HRESULT set to COR_E_IO, and its inner exception set to a null reference.

Remarks

The constructor initializes the Message property of the new instance to a system-supplied message that describes the error, such as "An I/O error occurred while performing the requested operation."

Constructor(message)

Initializes a new instance of the Message class with its message string set to message, its HRESULT set to COR_E_IO, and its inner exception set to null.

Parameters

message

The error message that explains the reason for the exception.
Can be instance of MfString or var containing string.

Remarks

The constructor initializes the Message property of the new instance using message.

Constructor(message, innerException)

Initializes a new instance of the IOException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Parameters

message

The error message that explains the reason for the exception.
Can be instance of MfString or var containing string.

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.

Remarks

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 Nothing if the InnerException property does not supply the inner exception value to the constructor.

Constructor(message, hresult)

Initializes a new instance of the IOException class with its Message string set to message and its HRESULT user-defined.

Parameters

message

The error message that explains the reason for the exception.
Can be instance of MfString or var containing string.

hresult

An integer identifying the error that has occurred.
Can be MfInteger instance or var containing integer.