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