Use this to specify the ExceptionCode object and an array of specific values (code arguments) in use when the error occurred for this exception.

Namespace:  FileNet.Api.Exception
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Sub New ( _
	code As ExceptionCode, _
	codeArgs As Object() _
)
C#
public EngineRuntimeException(
	ExceptionCode code,
	Object[] codeArgs
)
Visual C++
public:
EngineRuntimeException(
	ExceptionCode^ code, 
	array<Object^>^ codeArgs
)
JavaScript
FileNet.Api.Exception.EngineRuntimeException = function(code, codeArgs);

Parameters

code
Type: FileNet.Api.Exception..::.ExceptionCode
The ExceptionCode object to use.
codeArgs
Type: array< System..::.Object >[]()[]
An Object array containing the code arguments. This can be Null.

ToggleSee Also