singrdk/base/Applications/Runtime/Full/System/StackOverflowException.cs

40 lines
1.3 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//=============================================================================
//
// Class: StackOverflowException
//
// Purpose: The exception class for stack overflow.
//
//=============================================================================
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
namespace System
{
2008-03-05 09:52:00 -05:00
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="StackOverflowException"]/*' />
[AccessedByRuntime("referenced from halasm.asm/brtasm.asm")]
public sealed class StackOverflowException : SystemException {
//| <include path='docs/doc[@for="StackOverflowException.StackOverflowException"]/*' />
[AccessedByRuntime("referenced from halasm.asm")]
public StackOverflowException()
: base("Arg_StackOverflowException") {
}
//| <include path='docs/doc[@for="StackOverflowException.StackOverflowException1"]/*' />
public StackOverflowException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="StackOverflowException.StackOverflowException2"]/*' />
public StackOverflowException(String message, Exception innerException)
: base(message, innerException) {
}
}
}