Constructs an IMSLException with the specified detail message.

Namespace: Imsl
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
protected IMSLException(
	string namespaceName,
	string key,
	Object[] arguments
)
Visual Basic (Declaration)
Protected Sub New ( _
	namespaceName As String, _
	key As String, _
	arguments As Object() _
)
Visual C++
protected:
IMSLException(
	String^ namespaceName, 
	String^ key, 
	array<Object^>^ arguments
)

Parameters

namespaceName
Type: System..::.String
A String which specifies the namespace containing the ErrorMessages resource bundle.
key
Type: System..::.String
A String which specifies the key of the error message in the resource bundle.
arguments
Type: array< System..::.Object >[]()[]
An array of Objects containing arguments used within the error message string.

Remarks

The error message String is in a resource bundle, ErrorMessages.

See Also