singrdk/base/Kernel/System/ArithmeticException.cs

52 lines
1.7 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: ArithmeticException
**
**
** Purpose: Exception class for bad arithmetic conditions!
**
** Date: March 17, 1998
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.CompilerServices;
// The ArithmeticException is thrown when overflow or underflow
// occurs.
//
//| <include path='docs/doc[@for="ArithmeticException"]/*' />
[RequiredByBartok]
public class ArithmeticException : SystemException
{
// Creates a new ArithmeticException with its message string set to
// the empty string, its HRESULT set to COR_E_ARITHMETIC,
// and its ExceptionInfo reference set to null.
//| <include path='docs/doc[@for="ArithmeticException.ArithmeticException"]/*' />
public ArithmeticException()
: base("Arg_ArithmeticException") {
}
// Creates a new ArithmeticException with its message string set to
// message, its HRESULT set to COR_E_ARITHMETIC,
// and its ExceptionInfo reference set to null.
//
//| <include path='docs/doc[@for="ArithmeticException.ArithmeticException1"]/*' />
public ArithmeticException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="ArithmeticException.ArithmeticException2"]/*' />
public ArithmeticException(String message, Exception innerException)
: base(message, innerException) {
}
}
}