Commit 95604ea5 authored by Anael Beutot's avatar Anael Beutot
Browse files

Define ConfigError exception class

parent 09939d56
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -10,3 +10,8 @@ class PluginError(CloudControlError):
class TagConflict(CloudControlError):
    """Raised when a tag name conflicts arises between TagDB instances."""
    pass


class ConfigError(CloudControlError):
    """Raised in case of configuration error."""
    pass