summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin/exceptions.py
blob: bc8c62acda029b373b5ef5fe290ea95106a11d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
""" Exceptions for Bcfg2 Server Plugins."""

class PluginInitError(Exception):
    """Error raised in cases of :class:`Bcfg2.Server.Plugin.Plugin`
    initialization errors."""
    pass


class PluginExecutionError(Exception):
    """Error raised in case of :class:`Bcfg2.Server.Plugin.Plugin`
    execution errors."""
    pass


class MetadataConsistencyError(Exception):
    """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. """
    pass


class ValidationError(Exception):
    """ Exception raised by
    :class:`Bcfg2.Server.Plugin.StructureValidator` and
    :class:`Bcfg2.Server.Plugin.GoalValidator` objects """


class SpecificityError(Exception):
    """ Thrown by :class:`Bcfg2.Server.Plugin.Specificity` in case of
    filename parse failure."""
    pass