Exceptions

exception fixedpoint.FixedPointError

Base class for other fixedpoint exceptions.

exception fixedpoint.FixedPointOverflowError

Signals that overflow has occurred. Raised only when overflow_alert is 'error'.

Inherits from FixedPointError and OverflowError.

exception fixedpoint.MismatchError

Signals that the properties of 2 FixedPoints do not match. Raised only when mismatch_alert is 'error'.

Inherits from FixedPointError.

exception fixedpoint.ImplicitCastError

Signals that an object required implicit casting to a FixedPoint, and the cast was not exact. Raised only when implicit_cast_alert is 'error'.

Inherits from FixedPointError and FloatingPointError.