Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DimensionMismatchException(
string message,
Exception innerException,
DimensionType firstDimensionType,
string firstParameterName,
DimensionType secondDimensionType,
string secondParameterName
)
Public Sub New (
message As String,
innerException As Exception,
firstDimensionType As DimensionType,
firstParameterName As String,
secondDimensionType As DimensionType,
secondParameterName As String
)
public:
DimensionMismatchException(
String^ message,
Exception^ innerException,
DimensionType firstDimensionType,
String^ firstParameterName,
DimensionType secondDimensionType,
String^ secondParameterName
)
new :
message : string *
innerException : Exception *
firstDimensionType : DimensionType *
firstParameterName : string *
secondDimensionType : DimensionType *
secondParameterName : string -> DimensionMismatchException
Parameters
- message
- Type: SystemString
The error message that explains the reason for the exception. - innerException
- Type: SystemException
The exception that is the cause of the current exception.
If the innerException parameter is not , the current exception is raised in a catch block that handles the inner exception. - firstDimensionType
- Type: Extreme.MathematicsDimensionType
The DimensionType of the first parameter. - firstParameterName
- Type: SystemString
The name of the first parameter. - secondDimensionType
- Type: Extreme.MathematicsDimensionType
The DimensionType of the second parameter. - secondParameterName
- Type: SystemString
The name of the second parameter.
Reference