diff options
| author | vladimir.p <vladimir@zadarastorage.com> | 2011-08-28 04:38:21 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-08-28 04:38:21 +0000 |
| commit | 2a2672f92eacdde70cde3b105b36927d934bbd49 (patch) | |
| tree | 70e75dc5d232e7837768a627f84c88438d60bc6c /nova/exception.py | |
| parent | 4884e19c55fe2ea4d1596bba309d4bf7747fe7db (diff) | |
| parent | 209334e4740087aa0fd4b1aac8fcaf1a74ff7220 (diff) | |
| download | nova-2a2672f92eacdde70cde3b105b36927d934bbd49.tar.gz nova-2a2672f92eacdde70cde3b105b36927d934bbd49.tar.xz nova-2a2672f92eacdde70cde3b105b36927d934bbd49.zip | |
Virtual Storage Array (VSA) feature.
- new Virtual Storage Array (VSA) objects / OS API extensions / APIs / CLIs
- new schedulers for selecting nodes with particular volume capabilities
- new special volume driver
- report volume capabilities
- some fixes for volume types
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py index 067639042..32981f4d5 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -783,6 +783,18 @@ class PasteAppNotFound(NotFound): message = _("Could not load paste app '%(name)s' from %(path)s") +class VSANovaAccessParamNotFound(Invalid): + message = _("Nova access parameters were not specified.") + + +class VirtualStorageArrayNotFound(NotFound): + message = _("Virtual Storage Array %(id)d could not be found.") + + +class VirtualStorageArrayNotFoundByName(NotFound): + message = _("Virtual Storage Array %(name)s could not be found.") + + class CannotResizeToSameSize(NovaException): message = _("When resizing, instances must change size!") |
