diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-02-19 23:06:52 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-02-19 23:06:52 +0000 |
commit | 0424bd59fcd4c2f299dc61f57e576d97193a5769 (patch) | |
tree | f54370cf97682638fcf93c43cd7fba45479fdb5a /nova/exception.py | |
parent | ba9ebc76640743c5e40ebd9891ed74f222698d3e (diff) | |
parent | 59aaf1dff97aa25a71d317300b8255f4c59391a9 (diff) | |
download | nova-0424bd59fcd4c2f299dc61f57e576d97193a5769.tar.gz nova-0424bd59fcd4c2f299dc61f57e576d97193a5769.tar.xz nova-0424bd59fcd4c2f299dc61f57e576d97193a5769.zip |
Merge "Default SG rules for the Security Group "Default""
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 9e9e5182b..09b01b342 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -732,6 +732,10 @@ class SecurityGroupNotExistsForInstance(Invalid): " the instance %(instance_id)s") +class SecurityGroupDefaultRuleNotFound(Invalid): + message = _("Security group default rule (%rule_id)s not found.") + + class MigrationNotFound(NotFound): message = _("Migration %(migration_id)s could not be found.") |