diff options
| author | Josh Kearney <josh@jk0.org> | 2011-06-24 15:03:01 -0500 |
|---|---|---|
| committer | Josh Kearney <josh@jk0.org> | 2011-06-24 15:03:01 -0500 |
| commit | 594d5c7a98f2b4e6ea2d866f10c67cbdaa88ce0c (patch) | |
| tree | 75db0f8b25fe08ea6a037cdd8c4f03b8d0abb01a /nova/exception.py | |
| parent | 1d3960e3b76e3f75c68f919278a2a227e1f96e48 (diff) | |
| download | nova-594d5c7a98f2b4e6ea2d866f10c67cbdaa88ce0c.tar.gz nova-594d5c7a98f2b4e6ea2d866f10c67cbdaa88ce0c.tar.xz nova-594d5c7a98f2b4e6ea2d866f10c67cbdaa88ce0c.zip | |
Refactored backup rotate.
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 a548a638c..f3893d239 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -553,6 +553,10 @@ class ImageRotationNotAllowed(NovaException): message = _("Rotation is not allowed for snapshots") +class RotationRequiredForBackup(NovaException): + message = _("Rotation param is required for backup image_type") + + #TODO(bcwaldon): EOL this exception! class Duplicate(NovaException): pass |
