Type describing Floating Point processor exceptions.
Source position: mathh.inc line 68
type TFPUException = ( |
||
exInvalidOp, |
|
Invalid operation error. |
exDenormalized, |
|
Invalid denormalized form of float. |
exZeroDivide, |
|
Division by zero error. |
exOverflow, |
|
Float overflow error. |
exUnderflow, |
|
Float underflow error. |
exPrecision |
|
Precision error. |
); |
TFPUException describes what floating point errors raise exceptions. It has been moved here from the Math unit.
|
Set of TFPUException. |