summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin/exceptions.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-06 13:55:50 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-09-06 13:55:50 -0400
commit7d277c0d5fef3d0cdb9ca9b97cb2bca09f0f46c5 (patch)
tree16cf42edd6ffcfd703ef3621369b6605a6998031 /src/lib/Bcfg2/Server/Plugin/exceptions.py
parentd3aa773f9f42045a0922d6c194e01d029ee53a40 (diff)
downloadbcfg2-7d277c0d5fef3d0cdb9ca9b97cb2bca09f0f46c5.tar.gz
bcfg2-7d277c0d5fef3d0cdb9ca9b97cb2bca09f0f46c5.tar.bz2
bcfg2-7d277c0d5fef3d0cdb9ca9b97cb2bca09f0f46c5.zip
Documented all plugin helper objects
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugin/exceptions.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugin/exceptions.py21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/lib/Bcfg2/Server/Plugin/exceptions.py b/src/lib/Bcfg2/Server/Plugin/exceptions.py
index bc8c62acd..de561e8e4 100644
--- a/src/lib/Bcfg2/Server/Plugin/exceptions.py
+++ b/src/lib/Bcfg2/Server/Plugin/exceptions.py
@@ -1,36 +1,37 @@
""" Exceptions for Bcfg2 Server Plugins."""
class PluginInitError(Exception):
- """Error raised in cases of :class:`Bcfg2.Server.Plugin.Plugin`
- initialization errors."""
+ """Error raised in cases of
+ :class:`Bcfg2.Server.Plugin.base.Plugin` initialization errors."""
pass
class PluginExecutionError(Exception):
- """Error raised in case of :class:`Bcfg2.Server.Plugin.Plugin`
- execution errors."""
+ """Error raised in case of
+ :class:`Bcfg2.Server.Plugin.base.Plugin` execution errors."""
pass
class MetadataConsistencyError(Exception):
- """This error gets raised when metadata is internally inconsistent."""
+ """This error gets raised when metadata is internally
+ inconsistent."""
pass
class MetadataRuntimeError(Exception):
"""This error is raised when the metadata engine is called prior
to reading enough data, or for other
- :class:`Bcfg2.Server.Plugin.Metadata` errors. """
+ :class:`Bcfg2.Server.Plugin.interfaces.Metadata` errors."""
pass
class ValidationError(Exception):
""" Exception raised by
- :class:`Bcfg2.Server.Plugin.StructureValidator` and
- :class:`Bcfg2.Server.Plugin.GoalValidator` objects """
+ :class:`Bcfg2.Server.Plugin.interfaces.StructureValidator` and
+ :class:`Bcfg2.Server.Plugin.interfaces.GoalValidator` objects """
class SpecificityError(Exception):
- """ Thrown by :class:`Bcfg2.Server.Plugin.Specificity` in case of
- filename parse failure."""
+ """ Thrown by :class:`Bcfg2.Server.Plugin.helpers.Specificity` in
+ case of filename parse failure."""
pass