Source code for meetup2xibo.updater.exceptions
"""Descriptive exceptions."""
[docs]class ContainmentLoopError(Exception):
"""Raised when conflict analysis finds a loop in place containment."""
[docs]class MissingEnvVarError(Exception):
"""Raisded when an expected environment variable is missing."""
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 autoindent