mscorlib(4.0.0.0) API with additions
StackOverflowException.cs
3 
4 namespace System
5 {
8  [ComVisible(true)]
9  public sealed class StackOverflowException : SystemException
10  {
13  : base(Environment.GetResourceString("Arg_StackOverflowException"))
14  {
15  SetErrorCode(-2147023895);
16  }
17 
20  public StackOverflowException(string message)
21  : base(message)
22  {
23  SetErrorCode(-2147023895);
24  }
25 
29  public StackOverflowException(string message, Exception innerException)
30  : base(message, innerException)
31  {
32  SetErrorCode(-2147023895);
33  }
34 
36  : base(info, context)
37  {
38  }
39  }
40 }
StackOverflowException(string message)
Initializes a new instance of the T:System.StackOverflowException class with a specified error messag...
The exception that is thrown when the execution stack overflows because it contains too many nested m...
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-...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
StackOverflowException(string message, Exception innerException)
Initializes a new instance of the T:System.StackOverflowException class with a specified error messag...
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
StackOverflowException()
Initializes a new instance of the T:System.StackOverflowException class, setting the P:System....
Specifies that the class can be serialized.