Creates an ErrorStack instance from an EngineRuntimeException object. Each exception that is chained in the EngineRuntimeException object becomes an ErrorRecord object stored in the ErrorStack instance.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal erte As EngineRuntimeException _ 
)
C#
public ErrorStack(
   EngineRuntimeException erte
)
C++
public:
 ErrorStack(
   EngineRuntimeException erte
) sealed 
J#
public ErrorStack(
   EngineRuntimeException erte
)
JScript
public function ErrorStack(
   erte : EngineRuntimeException
)

Parameters

erte
An EngineRuntimeException object containing the exception or chain of exceptions to add to the stack.

See Also