Constructor()

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

Constructor()

OutputVar := new MfIO.FileNotFoundException()
OutputVar := new MfIO.FileNotFoundException(message)
OutputVar := new MfIO.FileNotFoundException(message, innerException)
OutputVar := new MfIO.FileNotFoundException(message, fileName)
OutputVar := new MfIO.FileNotFoundException(message, fileName, innerException)

Constructor()

Initializes a new instance of the FileNotFoundException class with its message string set to a system-supplied message and its HRESULT set to COR_E_FILENOTFOUND.

Remarks

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 file."

Constructor(message)

Initializes a new instance of the FileNotFoundException class with its Message string set to message and its HRESULT set to COR_E_FILENOTFOUND.

Parameters

message

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

Remarks

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

Constructor(message, innerException)

Initializes a new instance of the FileNotFoundException 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.

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

Constructor(message, fileName)

Initializes a new instance of the FileNotFoundException class with its Message string set to message, specifying the file name that cannot be found, and its HRESULT set to COR_E_FILENOTFOUND.

Parameters

message

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

fileName

The full name of the file 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 and the FileName property using fileName.

Constructor(message, fileName, innerException)

Initializes a new instance of the FileNotFoundException class with a specified error message, file name 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.

fileName

The full name of the file for the exception.
Can be instance of MfString or var containing string.

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