Files
sloth/sloth/core/exceptions.py
T
2014-03-19 22:00:51 +01:00

19 lines
342 B
Python

"""
Sloth exception classes.
"""
class ImproperlyConfigured(Exception):
"""There is an error in the configuration."""
pass
class NotImplementedException(Exception):
"""This function/method/class has not been implemented yet."""
pass
class InvalidArgumentException(Exception):
"""The argument is invalid."""
pass