From bc25b1227a0cbd557f722327a4c7d6cb7a924016 Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Tue, 17 May 2011 14:12:01 +0200 Subject: [PATCH] add NotImplementedException --- sloth/core/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sloth/core/exceptions.py b/sloth/core/exceptions.py index 5a32282..d820040 100644 --- a/sloth/core/exceptions.py +++ b/sloth/core/exceptions.py @@ -5,3 +5,7 @@ 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