mirror of
https://github.com/wassname/sloth.git
synced 2026-06-29 18:10:37 +08:00
16 lines
344 B
Python
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
|