// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: OverflowException
**
**
** Purpose: Exception class for Arithmetic Overflows.
**
** Date: August 31, 1998
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.CompilerServices;
//|
[RequiredByBartok]
public 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) {
}
}
}