Source code for meetup2xibo.updater.exceptions

"""Descriptive exceptions."""


[docs]class DatasetDiscoveryError(Exception): """Raised when dataset discovery fails."""
[docs]class ContainmentLoopError(Exception): """Raised when conflict analysis finds a loop in place containment."""
[docs]class JsonConversionError(Exception): """Raised when JSON conversion fails."""
[docs]class MissingEnvVarError(Exception): """Raisded when an expected environment variable is missing."""
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 autoindent