Source code for snaketools.errors

#!/usr/bin/env python
"""Provide error classes for snaketools."""
from snaketools import __author__, __email__


[docs]class SnaketoolsError(Exception): """Base error class for veoibd-synapse-data-manager."""
[docs]class NotImplementedYet(NotImplementedError, SnaketoolsError): """Raise when a section of code that has been left for another time is asked to execute."""
[docs] def __init__(self, msg=None): """Set up the Exception.""" if msg is None: msg = "That bonehead {author} should really hear your rage about this disgraceful result! Feel free to tell them at {email}".format(author=__author__, email=__email__) self.args = (msg, *self.args)
[docs]class ValidationError(SnaketoolsError): """Raise when a validation/sanity check comes back with unexpected value."""