536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
//
|
|
// <OWNER>Microsoft</OWNER>
|
|
//
|
|
/*=============================================================================
|
|
**
|
|
** 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) {
|
|
}
|
|
}
|
|
}
|