Files
sloth/sloth/core/exceptions.py
T
2011-06-08 12:41:58 +02:00

16 lines
344 B
Python

"""
Label tool 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