summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorMichael Still <mikal@stillhq.com>2013-04-28 16:51:22 +1000
committerMichael Still <mikal@stillhq.com>2013-05-01 08:45:09 +1000
commit01b0f6554be87a0664e74c63817c3034ee40a6ac (patch)
tree7024475a5cb85c767d0d7d784d2508a5c51706c7 /nova/exception.py
parentb7186ce03b43a00c7241be54385120ab3f7a03aa (diff)
downloadnova-01b0f6554be87a0664e74c63817c3034ee40a6ac.tar.gz
nova-01b0f6554be87a0664e74c63817c3034ee40a6ac.tar.xz
nova-01b0f6554be87a0664e74c63817c3034ee40a6ac.zip
Update to using oslo periodic tasks implementation.
Convert nova to using the oslo periodic tasks implementation. There are no functional changes in this review. Change-Id: I767e0ad17781d5f9d5e987e0a4ad65796243ae5c
Diffstat (limited to 'nova/exception.py')
-rw-r--r--nova/exception.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/exception.py b/nova/exception.py
index fd3899cff..698b49c2b 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -452,10 +452,6 @@ class InvalidID(Invalid):
message = _("Invalid ID received %(id)s.")
-class InvalidPeriodicTaskArg(Invalid):
- message = _("Unexpected argument for periodic task creation: %(arg)s.")
-
-
class ConstraintNotMet(NovaException):
message = _("Constraint not met.")
code = 412