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)

ToggleSyntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class EngineRuntimeException _
	Inherits ApplicationException _
	Implements ISerializable
C#
[SerializableAttribute]
public class EngineRuntimeException : ApplicationException, 
	ISerializable
Visual C++
[SerializableAttribute]
public ref class EngineRuntimeException : public ApplicationException, 
	ISerializable
JavaScript
FileNet.Api.Exception.EngineRuntimeException = function();

Type.createClass(
	'FileNet.Api.Exception.EngineRuntimeException',
	ApplicationException,
	ISerializable);

ToggleInheritance Hierarchy

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

ToggleSee Also