(FileNet internal use only) Specifies Throwable 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 Exception,  _ 
   ByVal code As ExceptionCode,  _ 
   ByVal codeArgs As Object(),  _ 
   ByVal ctx As ExceptionContext,  _ 
   ByVal ctxArgs As Object() _ 
)
C#
public EngineRuntimeException(
   Exception cause,
   ExceptionCode code,
   object[] codeArgs,
   ExceptionContext ctx,
   object[] ctxArgs
)
C++
public:
 EngineRuntimeException(
   Exception cause,
   ExceptionCode code,
   array<Object>^ codeArgs,
   ExceptionContext ctx,
   array<Object>^ ctxArgs
) sealed 
J#
public EngineRuntimeException(
   Exception cause,
   ExceptionCode code,
   object[] codeArgs,
   ExceptionContext ctx,
   object[] ctxArgs
)
JScript
public function EngineRuntimeException(
   cause : Exception,
   code : ExceptionCode,
   codeArgs : Object[],
   ctx : ExceptionContext,
   ctxArgs : Object[]
)

Parameters

cause
A System Exception object containing the exception to wrap.
code
The ExceptionCode object to use.
codeArgs
An Object array containing the code arguments.
ctx
Used to localize context message.
ctxArgs
An Object array containing the context arguments.

See Also