Class Rounded
object --+
|
exceptions.BaseException --+
|
exceptions.Exception --+
|
exceptions.StandardError --+
|
exceptions.ArithmeticError --+
|
DecimalException --+
|
Rounded
- Known Subclasses:
-
Number got rounded (not necessarily changed during rounding).
This occurs and signals rounded whenever the result of an operation is
rounded (that is, some zero or non-zero digits were discarded from the
coefficient), or if an overflow or underflow condition occurs. The result
in all cases is unchanged.
The rounded signal may be tested (or trapped) to determine if a given
operation (or sequence of operations) caused a loss of precision.
Inherited from DecimalException :
handle
Inherited from exceptions.ArithmeticError :
__init__ ,
__new__
Inherited from exceptions.BaseException :
__delattr__ ,
__getattribute__ ,
__getitem__ ,
__getslice__ ,
__reduce__ ,
__repr__ ,
__setattr__ ,
__setstate__ ,
__str__
Inherited from object :
__hash__ ,
__reduce_ex__
|