Represents a single exception that has occurred on the server.

When the server returns an exception to the client it converts each chained exception into an ErrorRecord object and places it in an error stack (ErrorStack).


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

Syntax

Visual Basic (Declaration)
<SerializableAttribute>
Public Class ErrorRecord
    Implements ISerializable
C#
[SerializableAttribute]
public class ErrorRecord : ISerializable
C++
[SerializableAttribute]
ref class ErrorRecord : ISerializable
J#
/** @attribute SerializableAttribute() */
public class ErrorRecord implements ISerializable
JScript
public 
   SerializableAttribute
class ErrorRecord extends ISerializable

Inheritance Hierarchy

System.Object
   FileNet.Api.Exception.ErrorRecord

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also