Source code for helium_py.currency.exceptions

"""Exceptions for Currency module."""


[docs]class UnsupportedCurrencyError(Exception): """Exception for unexpected conversion.""" pass
[docs]class MixedCurrencyTypeError(Exception): """Exception for unexpected mixing of currency types.""" pass
[docs]class UnsupportedCurrencyConversionError(Exception): """Exception for unexpected conversion.""" pass