Used for all unchecked exceptions. The exceptions are defined as ExceptionCode objects. EngineRuntimeException supports use of an error stack, as well as exception chaining (constructing a chain of exceptions by wrapping additional exceptions). You can use GetAsErrorStack to do a stack trace of either the error stack or the exception chain.


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

Syntax

Visual Basic (Declaration)
<SerializableAttribute>
Public Class EngineRuntimeException
    Inherits ApplicationException
C#
[SerializableAttribute]
public class EngineRuntimeException : ApplicationException
C++
[SerializableAttribute]
ref class EngineRuntimeException : ApplicationException
J#
/** @attribute SerializableAttribute() */
public class EngineRuntimeException extends ApplicationException
JScript
public 
   SerializableAttribute
class EngineRuntimeException extends ApplicationException

Inheritance Hierarchy

System.Object
   System.Exception
      System.ApplicationException
         FileNet.Api.Exception.EngineRuntimeException

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