(FileNet internal use only) Specifies Throwable cause, exception code, and context.

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

ToggleSyntax

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

Parameters

cause
Type: System..::.Exception
A System Exception object containing the exception to wrap.
code
Type: FileNet.Api.Exception..::.ExceptionCode
The ExceptionCode object to use.
codeArgs
Type: array< System..::.Object >[]()[]
An Object array containing the code arguments.
ctx
Type: ExceptionContext
Used to localize context message.
ctxArgs
Type: array< System..::.Object >[]()[]
An Object array containing the context arguments.

ToggleSee Also