Operations that would return a Float that cannot produce reasonable results return an exceptional float, such as PlusInfinity or PlusQuietNaN, rather than signaling an exception.
For example,
100 / 0.0 results in PlusInfinity
-100.0 sqrt results in MinusQuietNaN
In 2.x and earlier, division by floating point zero did raise an exception, while other operations returned exceptional floats.
When performing operations involving floats, explicitly check for exceptional float return values (see Number >> kind).
In version 3.4 and later, various kinds of FloatingPoint exceptions, including divide by zero, can be enabled. See v3.4 Release Notes/FloatingPoint signalling Exceptions.
Last updated: 10/30/17