DivideByZeroException | CF 1.0, ECMA 1.0, serializable |
System (mscorlib.dll) | class |
This exception is thrown when a math
operation attempts to divide by zero.
public class DivideByZeroException : ArithmeticException {
// Public Constructors
public DivideByZeroException( );
public DivideByZeroException(string message);
public DivideByZeroException(string message, Exception innerException);
// Protected Constructors
protected DivideByZeroException(System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context);
}
Hierarchy
Object
Exception(System.Runtime.Serialization.ISerializable)
SystemException
ArithmeticException
DivideByZeroException
|