diff options
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 43d16642f..f485e5ddf 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -554,6 +554,10 @@ class NetworkHostNotSet(NovaException): message = _("Host is not set to the network (%(network_id)s).") +class NetworkBusy(NovaException): + message = _("Network %(network)s has active ports, cannot delete.") + + class DatastoreNotFound(NotFound): message = _("Could not find the datastore reference(s) which the VM uses.") |