2016-08-03 10:59:49 +00:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//
2017-08-21 15:34:15 +00:00
// <OWNER>Microsoft</OWNER>
2016-08-03 10:59:49 +00:00
//
/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
* *
* * Class : ExecutionEngineException
* *
* *
* * Purpose : The exception class for misc execution engine exceptions .
* * Currently , its only used as a placeholder type when the EE
* * does a FailFast .
* *
* *
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
namespace System {
using System ;
using System.Runtime.Serialization ;
[Obsolete("This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")]
[System.Runtime.InteropServices.ComVisible(true)]
[Serializable]
public sealed class ExecutionEngineException : SystemException {
public ExecutionEngineException ( )
: base ( Environment . GetResourceString ( "Arg_ExecutionEngineException" ) ) {
SetErrorCode ( __HResults . COR_E_EXECUTIONENGINE ) ;
}
public ExecutionEngineException ( String message )
: base ( message ) {
SetErrorCode ( __HResults . COR_E_EXECUTIONENGINE ) ;
}
public ExecutionEngineException ( String message , Exception innerException )
: base ( message , innerException ) {
SetErrorCode ( __HResults . COR_E_EXECUTIONENGINE ) ;
}
internal ExecutionEngineException ( SerializationInfo info , StreamingContext context ) : base ( info , context ) {
}
}
}