FPEnvExceptionEnumEnum
Floating point environment exceptions
Members
DivisionByZero |
Floating point division by zero, or operation resulting in infinity, occured (pole error) |
Inexact |
The result is not an exact floating point number |
Invalid |
Argument passed to a function or operator was invalid (domain error) |
Overflow |
The result is too large to be represented as a floating point value of the return type (overflow range error) |
Underflow |
The result is too small to be represented as a floating point value of the return type, causing loss of precision (underflow range error) |
AllExceptions |
Represents selection of all the floating point exceptions: DivisionByZero, Inexact, Invalid, Overflow, and Underflow (Bitwise ORed) |