summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfirstaidkit/errors.py')
-rw-r--r--pyfirstaidkit/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyfirstaidkit/errors.py b/pyfirstaidkit/errors.py
index 02bbf27..e49d978 100644
--- a/pyfirstaidkit/errors.py
+++ b/pyfirstaidkit/errors.py
@@ -44,3 +44,7 @@ class GeneralPluginException(FAKException):
def __init__(self, plugin, message):
self.message="There was an exception in plugin %s with message %s"% \
(plugin,message)
+
+class NoAnswerException(FAKException):
+ def __init__(self):
+ self.message="No answer provided by user."