InvalidFileFormatException Constructor (String, Exception)

Independentsoft MSG .NET

InvalidFileFormatException Constructor (String, Exception) MSG .NET Class Library
Creates a new instance of the InvalidFileFormatException class with the specified error message and inner exception.

Namespace: Independentsoft.IO.StructuredStorage
Assembly: Independentsoft.Msg (in Independentsoft.Msg.dll) Version: 2.0.140.29868

Syntax

public InvalidFileFormatException(
	string message,
	Exception innerException
)
public InvalidFileFormatException(
	string message,
	Exception innerException
)
Public Sub New ( 
	message As String,
	innerException As Exception
)
Public Sub New ( 
	message As String,
	innerException As Exception
)
Dim message As String 
Dim innerException As Exception 

Dim instance As New InvalidFileFormatException(message, 
	innerException)
Dim message As String 
Dim innerException As Exception 

Dim instance As New InvalidFileFormatException(message, 
	innerException)
public InvalidFileFormatException(
	String message,
	Exception innerException
)
public InvalidFileFormatException(
	String message,
	Exception innerException
)
public function InvalidFileFormatException(
	message : String, 
	innerException : Exception
)
public function InvalidFileFormatException(
	message : String, 
	innerException : Exception
)
Independentsoft.IO.StructuredStorage.InvalidFileFormatException = function(message, innerException);
Independentsoft.IO.StructuredStorage.InvalidFileFormatException = function(message, innerException);

Parameters

message
Type: OnlineSystem String
The message that describes the error.
innerException
Type: OnlineSystem Exception
The exception that is the cause of the current exception. If the innerException parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.
See Also