Use this to create a record from exception data.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal source As String,  _ 
   ByVal description As String,  _ 
   ByVal diagnosticTypes As Hashtable _ 
)
C#
public ErrorRecord(
   string source,
   string description,
   Hashtable diagnosticTypes
)
C++
public:
 ErrorRecord(
   String source,
   String description,
   Hashtable diagnosticTypes
) sealed 
J#
public ErrorRecord(
   string source,
   string description,
   Hashtable diagnosticTypes
)
JScript
public function ErrorRecord(
   source : String,
   description : String,
   diagnosticTypes : Hashtable
)

Parameters

source
A String containing the name of the exception instance that occurred.
description
A String containing a description of the exception.
diagnosticTypes
A System.Collections.Hashtable object containing the exception code string, and a string containing the stack trace information for this exception.

See Also