System.SysUtils.EIntError

Delphi
EIntError = class(EExternal);
C++
class PASCALIMPLEMENTATION EIntError : public EExternal
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.
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.