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



message
A string containing the message describing the error.
innerException
The inner Exception object.
Constructs a new instance of the SingularMatrixException class with the specified error 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 SingularMatrixException(message, innerException)
C# 
public SingularMatrixException( 
   string message,
   Exception innerException
)
C++/CLI 
public:
SingularMatrixException( 
   String^ message,
   Exception^ innerException
)

Parameters

message
A 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