Исходный код lena.core.exceptions

"""All Lena exceptions are subclasses of :exc:`LenaException`
and corresponding Python exceptions (if they exist).
"""

# pylint: disable=missing-docstring
# Most Exceptions here are familiar to Python programmers
# and are self-explanatory.


[документация]class LenaException(Exception): """Base class for all Lena exceptions.""" pass
[документация]class LenaAttributeError(LenaException, AttributeError): pass
[документация]class LenaEnvironmentError(LenaException, EnvironmentError): """The base class for exceptions that can occur outside the Python system, like IOError or OSError. """
[документация]class LenaIndexError(LenaException, IndexError): pass
[документация]class LenaKeyError(LenaException, KeyError): pass
[документация]class LenaNotImplementedError(LenaException, NotImplementedError): pass
[документация]class LenaRuntimeError(LenaException, RuntimeError): """Raised when an error does not belong to other categories.""" pass
[документация]class LenaStopFill(LenaException): """Signal that no more fill is accepted. Analogous to StopIteration, but control flow is reversed. """ pass
[документация]class LenaTypeError(LenaException, TypeError): """Incorrect type. Typically used during initialization of Lena elements. Use :exc:`LenaValueError` for errors from values from the flow. """ pass
[документация]class LenaValueError(LenaException, ValueError): """Wrong value. It is also used for values from the flow, even when they have a wrong type. """ pass
[документация]class LenaZeroDivisionError(LenaException, ZeroDivisionError): # raised when, for example, mean can't be calculated pass