summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Error.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Error.py b/src/Error.py
index e315b02da..61177da99 100644
--- a/src/Error.py
+++ b/src/Error.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+# $Id$
class NodeConfigurationError(Exception):
def __init__(self,node,etype):
@@ -7,3 +8,10 @@ class NodeConfigurationError(Exception):
def __str__(self):
return "NCE: %s:%s"%(self.node,self.etype)
+
+class GeneratorError(Exception):
+ pass
+
+class PublishError(Exception):
+ pass
+