OutputVar := new MfInvalidCastException()
OutputVar := new MfInvalidCastException(message)
OutputVar := new MfInvalidCastException(message, innerException)
OutputVar := new MfInvalidCastException(message, errorCode)
Initializes a new instance of the MfInvalidCastException class.
This constructor initializes the Message property of the new instance to a system-supplied message that describes the error, such as "As error has occurred."
Initializes a new instance of MfInvalidCastException class with a specified error message.
The content of the message parameter should be understandable to the user. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
Initializes a new instance of MfInvalidCastException class with a specified error message and a reference to the inner exception that is the cause of this exception.
An exception that is thrown as a direct result of a previous exception can 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 a null reference if the InnerException property does not supply the inner exception value to the constructor.
Initializes a new instance of MfInvalidCastException class with a specified message and error code.
This constructor initializes the Message property of the new MfInvalidCastException using the message parameter. The content of message 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.
This constructor supplies an HRESULT value that is accessible to inheritors of the MfInvalidCastException class, via the protected HResult property of the MfInvalidCastException class.
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.
errorCode
The error code (HRESULT) value associated with the exception.
Can be instance of MfInteger or var containing integer.