You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,47 @@
|
||||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
//
|
||||
// <OWNER>[....]</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) {
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user