25 lines
610 B
C#
25 lines
610 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*=============================================================================
|
|
**
|
|
** Class: OverflowException
|
|
**
|
|
** Purpose: Exception class for Arithmetic Overflows.
|
|
**
|
|
=============================================================================*/
|
|
|
|
namespace System
|
|
{
|
|
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
//| <include path='docs/doc[@for="OverflowException"]/*' />
|
|
[RequiredByBartok]
|
|
public partial class OverflowException : ArithmeticException {
|
|
}
|
|
}
|