(FileNet internal use only) Specifies EngineRuntimeException 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 EngineRuntimeException, _
	ctx As ExceptionContext, _
	ctxArgs As Object() _
)
C#
public EngineRuntimeException(
	EngineRuntimeException cause,
	ExceptionContext ctx,
	Object[] ctxArgs
)
Visual C++
public:
EngineRuntimeException(
	EngineRuntimeException^ cause, 
	ExceptionContext^ ctx, 
	array<Object^>^ ctxArgs
)
JavaScript
FileNet.Api.Exception.EngineRuntimeException = function(cause, ctx, ctxArgs);

Parameters

cause
Type: FileNet.Api.Exception..::.EngineRuntimeException
An EngineRuntimeException containing the exception to wrap. The exception code and its argument array are retrieved from this object.
ctx
Type: ExceptionContext
Used to localize context message.
ctxArgs
Type: array< System..::.Object >[]()[]
An Object array containing the context arguments.

ToggleSee Also