.NET Matrix Library
NotSquareMatrixException Constructor(String,Exception)
See Also  Send Feedback



message
string containing the message describing the error.
innerException
The inner Exception object.
Creates a new instance of the NotSquareMatrixException class with the specified message and the underlying (inner) exception.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal message As String, _
   ByVal innerException As Exception _
)
Visual Basic (Usage)Copy Code
Dim message As String
Dim innerException As Exception
 
Dim instance As New NotSquareMatrixException(message, innerException)
C# 
public NotSquareMatrixException( 
   string message,
   Exception innerException
)
C++/CLI 
public:
NotSquareMatrixException( 
   String^ message,
   Exception^ innerException
)

Parameters

message
string containing the message describing the error.
innerException
The inner Exception object.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library