Action: Add config accessor functions.
[matthijs/projects/backupninja.git] / src / lib / backupninja / config.py
index 030fc573121a83474e3486a5c0d5234921555eb4..5f1b283094a8f27641ab327a622163650ef58e26 100644 (file)
@@ -28,6 +28,15 @@ default_global_config = {}
 
 import logging as log
 
+class ConfigError(Exception):
+    """
+    An exception thrown when something is wrong with the config.
+    This is not thrown by the config module, but it is meant to be
+    thrown by handlers when they find something wrong with the
+    configuration contents.
+    """
+    pass
+
 def get_global_config(opts):
     """
     Returns the global configuration, in a SafeConfigParser object.