diff --git a/neutron_lib/exceptions/firewall_v2.py b/neutron_lib/exceptions/firewall_v2.py index a9c614847..e5dd319a0 100644 --- a/neutron_lib/exceptions/firewall_v2.py +++ b/neutron_lib/exceptions/firewall_v2.py @@ -175,3 +175,8 @@ class FirewallGroupDefaultAlreadyExists(exceptions.InUse): """ message = _("Default firewall group already exists. 'default' is the " "reserved name for firewall group.") + + +class FirewallGroupPortNotSupported(exceptions.Conflict): + message = _("Port %(port_id)s is not supported by firewall driver " + "'%(driver_name)s'.")