singrdk/base/Applications/Runtime/Full/System/OverflowException.cs

40 lines
1.3 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//=============================================================================
//
// Class: OverflowException
//
// Purpose: Exception class for Arithmetic Overflows.
//
//=============================================================================
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
namespace System
{
2008-03-05 09:52:00 -05:00
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="OverflowException"]/*' />
2008-11-17 18:29:00 -05:00
[AccessedByRuntime("referenced from halasm.asm")]
public partial class OverflowException : ArithmeticException {
2008-03-05 09:52:00 -05:00
//| <include path='docs/doc[@for="OverflowException.OverflowException"]/*' />
[AccessedByRuntime("referenced from halasm.asm")]
public OverflowException()
: base("Arg_OverflowException") {
}
//| <include path='docs/doc[@for="OverflowException.OverflowException1"]/*' />
public OverflowException(String message)
: base(message) {
}
//| <include path='docs/doc[@for="OverflowException.OverflowException2"]/*' />
public OverflowException(String message, Exception innerException)
: base(message, innerException) {
}
}
}