mscorlib(4.0.0.0) API with additions
ExecutionEngineException.cs
3 
4 namespace System
5 {
8  [Obsolete("This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")]
9  [ComVisible(true)]
11  {
14  : base(Environment.GetResourceString("Arg_ExecutionEngineException"))
15  {
16  SetErrorCode(-2146233082);
17  }
18 
21  public ExecutionEngineException(string message)
22  : base(message)
23  {
24  SetErrorCode(-2146233082);
25  }
26 
30  public ExecutionEngineException(string message, Exception innerException)
31  : base(message, innerException)
32  {
33  SetErrorCode(-2146233082);
34  }
35 
37  : base(info, context)
38  {
39  }
40  }
41 }
ExecutionEngineException()
Initializes a new instance of the T:System.ExecutionEngineException class.
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
ExecutionEngineException(string message, Exception innerException)
Initializes a new instance of the T:System.ExecutionEngineException class with a specified error mess...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
ExecutionEngineException(string message)
Initializes a new instance of the T:System.ExecutionEngineException class with a specified error mess...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.
The exception that is thrown when there is an internal error in the execution engine of the common la...