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


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal cause As EngineRuntimeException,  _ 
   ByVal ctx As ExceptionContext,  _ 
   ByVal ctxArgs As Object() _ 
)
C#
public EngineRuntimeException(
   EngineRuntimeException cause,
   ExceptionContext ctx,
   object[] ctxArgs
)
C++
public:
 EngineRuntimeException(
   EngineRuntimeException cause,
   ExceptionContext ctx,
   array<Object>^ ctxArgs
) sealed 
J#
public EngineRuntimeException(
   EngineRuntimeException cause,
   ExceptionContext ctx,
   object[] ctxArgs
)
JScript
public function EngineRuntimeException(
   cause : EngineRuntimeException,
   ctx : ExceptionContext,
   ctxArgs : Object[]
)

Parameters

cause
An EngineRuntimeException containing the exception to wrap. The exception code and its argument array are retrieved from this object.
ctx
Used to localize context message.
ctxArgs
An Object array containing the context arguments.

See Also