MessageFormatException Constructor (String, Exception)

Independentsoft MSG .NET

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

Namespace: Independentsoft.Email.Mime
Assembly: Independentsoft.Msg (in Independentsoft.Msg.dll) Version: 2.0.140.29868

Syntax

public MessageFormatException(
	string message,
	Exception innerException
)
public MessageFormatException(
	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 MessageFormatException(message, 
	innerException)
Dim message As String 
Dim innerException As Exception 

Dim instance As New MessageFormatException(message, 
	innerException)
public MessageFormatException(
	String message,
	Exception innerException
)
public MessageFormatException(
	String message,
	Exception innerException
)
public function MessageFormatException(
	message : String, 
	innerException : Exception
)
public function MessageFormatException(
	message : String, 
	innerException : Exception
)
Independentsoft.Email.Mime.MessageFormatException = function(message, innerException);
Independentsoft.Email.Mime.MessageFormatException = 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