use IntPtr instead of CriticalHandle to avoid resurrection issues. It's ok to never...
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / StackOverflowException.cs
blob0177b588170d123503c1511de663dcd8aee6197e
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 /*=============================================================================
6 **
7 **
8 **
9 ** Purpose: The exception class for stack overflow.
12 =============================================================================*/
14 using System.Runtime.Serialization;
16 namespace System
18 [Serializable]
19 [System.Runtime.CompilerServices.TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
20 public sealed class StackOverflowException : SystemException
22 public StackOverflowException()
23 : base(SR.Arg_StackOverflowException)
25 HResult = HResults.COR_E_STACKOVERFLOW;
28 public StackOverflowException(string? message)
29 : base(message)
31 HResult = HResults.COR_E_STACKOVERFLOW;
34 public StackOverflowException(string? message, Exception? innerException)
35 : base(message, innerException)
37 HResult = HResults.COR_E_STACKOVERFLOW;
40 internal StackOverflowException(SerializationInfo info, StreamingContext context) : base(info, context)