Use this to specify the ExceptionCode object and the specific value in use (code argument) when the error occurred for this exception.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal code As ExceptionCode,  _ 
   ByVal codeArg0 As Object _ 
)
C#
public EngineRuntimeException(
   ExceptionCode code,
   object codeArg0
)
C++
public:
 EngineRuntimeException(
   ExceptionCode code,
   Object codeArg0
) sealed 
J#
public EngineRuntimeException(
   ExceptionCode code,
   object codeArg0
)
JScript
public function EngineRuntimeException(
   code : ExceptionCode,
   codeArg0 : Object
)

Parameters

code
The ExceptionCode object to use.
codeArg0
An Object containing the code argument. This can be Null.

See Also