System Namespace


.NET Framework Class Library
ExecutionEngineException Class

The exception that is thrown when there is an internal error in the execution engine of the common language runtime. This class cannot be inherited.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class ExecutionEngineException _
    Inherits SystemException
Visual Basic (Usage)
Dim instance As ExecutionEngineException
C#
[SerializableAttribute]
[ComVisibleAttribute(true)]
public sealed class ExecutionEngineException : SystemException
Visual C++
[SerializableAttribute]
[ComVisibleAttribute(true)]
public ref class ExecutionEngineException sealed : public SystemException
JScript
public final class ExecutionEngineException extends SystemException
Remarks

ExecutionEngineException represents fatal errors in the common language runtime (CLR). When it is not possible for the CLR to continue execution, typically because of fatal internal errors, the CLR calls the FailFast(String, Exception) method and supplies ExecutionEngineException as the second parameter. The CLR never throws this exception in such a way that managed code can catch it.

Applications should not throw ExecutionEngineException.

ExecutionEngineException uses the HRESULT COR_E_EXECUTIONENGINE, which has the value 0x80131506.

For a list of initial property values for an instance of ExecutionEngineException, see the ExecutionEngineException constructors.

NoteNote:

The value of the inherited Data property is always nullNothingnullptra null reference (Nothing in Visual Basic).

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    System..::.SystemException
      System..::.ExecutionEngineException
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Other Resources

Tags :


Page view tracker