mscorlib(4.0.0.0) API with additions
InsufficientExecutionStackException.cs
2 
3 namespace System
4 {
7  [__DynamicallyInvokable]
9  {
11  [__DynamicallyInvokable]
13  : base(Environment.GetResourceString("Arg_InsufficientExecutionStackException"))
14  {
15  SetErrorCode(-2146232968);
16  }
17 
20  [__DynamicallyInvokable]
21  public InsufficientExecutionStackException(string message)
22  : base(message)
23  {
24  SetErrorCode(-2146232968);
25  }
26 
30  [__DynamicallyInvokable]
31  public InsufficientExecutionStackException(string message, Exception innerException)
32  : base(message, innerException)
33  {
34  SetErrorCode(-2146232968);
35  }
36 
38  : base(info, context)
39  {
40  }
41  }
42 }
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
InsufficientExecutionStackException()
Initializes a new instance of the T:System.InsufficientExecutionStackException class.
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
The exception that is thrown when there is insufficient execution stack available to allow most metho...
InsufficientExecutionStackException(string message)
Initializes a new instance of the T:System.InsufficientExecutionStackException class with a specified...
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.
InsufficientExecutionStackException(string message, Exception innerException)
Initializes a new instance of the T:System.InsufficientExecutionStackException class with a specified...