System.Math.TArithmeticExceptions

From RAD Studio API Documentation
Revision as of 10:52, 18 February 2015 by AndreyKuchukov (talk | contribs) (RS-38832)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

type 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