// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: StackOverflowException
//
// Purpose: The exception class for stack overflow.
//
//=============================================================================
namespace System
{
using System;
using System.Runtime.CompilerServices;
//|
[AccessedByRuntime("referenced from halasm.asm/brtasm.asm")]
public sealed class StackOverflowException : SystemException {
//|
[AccessedByRuntime("referenced from halasm.asm")]
public StackOverflowException()
: base("Arg_StackOverflowException") {
}
//|
public StackOverflowException(String message)
: base(message) {
}
//|
public StackOverflowException(String message, Exception innerException)
: base(message, innerException) {
}
}
}