// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//=============================================================================
//
// Class: OverflowException
//
// Purpose: Exception class for Arithmetic Overflows.
//
//=============================================================================
namespace System
{
using System;
using System.Runtime.CompilerServices;
//|
[AccessedByRuntime("referenced from halasm.asm")]
public partial class OverflowException : ArithmeticException {
//|
[AccessedByRuntime("referenced from halasm.asm")]
public OverflowException()
: base("Arg_OverflowException") {
}
//|
public OverflowException(String message)
: base(message) {
}
//|
public OverflowException(String message, Exception innerException)
: base(message, innerException) {
}
}
}