API:System.SysUtils.EDivByZero

From RAD Studio API Documentation
Jump to: navigation, search

System.SysUtils.EIntErrorSystem.SysUtils.EExternalSystem.SysUtils.ExceptionSystem.TObjectEDivByZero

Delphi

EDivByZero = class(EIntError);

C++

class PASCALIMPLEMENTATION EDivByZero : public EIntError

Properties

Type Visibility Source Unit Parent
class public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

EIntError is the base class for integer math error exceptions.

System.SysUtils.EDivByZero inherits from System.SysUtils.EIntError. All content below this line refers to System.SysUtils.EIntError.

EIntError is the base class for integer math error exceptions.

EIntError is a generic integer math exception. Although it is never raised in the runtime library, it is the base from which other integer math exceptions descend. These are the integer math exceptions.



Exception Meaning

EDivByZero

An attempt was made to divide by zero.

ERangeError

Number or expression out of range.

EIntOverflow

Integer operation overflowed.



Run-time exception information is saved in fields provided by EExternal.

See Also