System.Math.TArithmeticExceptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TArithmeticExceptions = set of TArithmeticException;

C++

typedef System::Set<TArithmeticException, TArithmeticException::exInvalidOp, TArithmeticException::exPrecision> TArithmeticExceptions;

Properties

Type Visibility Source Unit Parent
set
typedef
public
System.Math.pas
System.Math.hpp
System.Math System.Math

Description

Specifies a set of handled floating-point exceptions.

TArithmeticExceptions contains a set of TArithmeticException values. TArithmeticException defines the following floating-point exceptions: exInvalidOp, exDenormalized, exZeroDivide, exOverflow, exUnderflow, exPrecision.

You can get the list of handled floating-point exceptions using GetExceptions.

See Also