# Raised when a general problem has occurred in the Units framework or some # other error has occurred during its use. class UnitsException < Exception end # Raised when a unit was expected but was not found. class MissingUnitsException < UnitsException end # Raised when a unit was expected but more than one was found. class AmbiguousUnitsException < UnitsException end