mirror of
https://github.com/wassname/sloth.git
synced 2026-08-02 13:04:07 +08:00
19 lines
342 B
Python
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
|