Commit 0af7e62c authored by Anael Beutot's avatar Anael Beutot Committed by Antoine Millet
Browse files

Add TagConflict exception

parent ef102f19
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5,3 +5,8 @@ class CloudControlError(Exception):
class PluginError(CloudControlError):
    """Exception related to plugin execution."""
    pass


class TagConflict(CloudControlError):
    """Raised when a tag name conflicts arises between TagDB instances."""
    pass