summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-08-11 19:54:35 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-08-11 19:54:35 +0000
commit0b591cfb416a932daee5e158b7b5b15dde2b0896 (patch)
tree9fb989bea24da162a89172d67fadad72a70ca66a /src
parentec10fc704146f0cf9e496220977bd2785b9da70c (diff)
downloadbcfg2-0b591cfb416a932daee5e158b7b5b15dde2b0896.tar.gz
bcfg2-0b591cfb416a932daee5e158b7b5b15dde2b0896.tar.bz2
bcfg2-0b591cfb416a932daee5e158b7b5b15dde2b0896.zip
Rename: src/Error.py -> src/lib/Server/Error.py
}(Logical change 1.33) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@179 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/Error.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Error.py b/src/Error.py
deleted file mode 100644
index 593dfb9b2..000000000
--- a/src/Error.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-# $Id$
-
-class NodeConfigurationError(Exception):
- def __init__(self,node,etype):
- self.node=node
- self.etype=etype
-
- def __str__(self):
- return "NCE: %s:%s"%(self.node,self.etype)
-
-class GeneratorError(Exception):
- pass
-
-class PublishError(Exception):
- pass
-
-class CfgFileException(Exception):
- def __init__(self,op,filename):
- self.operation=op
- self.filename=filename
-
- def __str__(self):
- return "%s : %s"%(`self.operation`, `self.filename`)