diff options
author | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-11-02 09:15:58 -0400 |
---|---|---|
committer | Sean Dague <sdague@linux.vnet.ibm.com> | 2012-11-02 09:15:58 -0400 |
commit | df0ca59607d0511573cb15fe69bd4dbc5e505a80 (patch) | |
tree | 43b4ea3e01e8219e944f5f6674d933accb03de2d /nova/exception.py | |
parent | 8eb367ab65cab8a26c4d61e1e4951e8bb58606b0 (diff) | |
download | nova-df0ca59607d0511573cb15fe69bd4dbc5e505a80.tar.gz nova-df0ca59607d0511573cb15fe69bd4dbc5e505a80.tar.xz nova-df0ca59607d0511573cb15fe69bd4dbc5e505a80.zip |
sync deprecated log method from openstack-common
the nova common deprecated util is now part of openstack-common
log class as a deprecate method. Sync openstack-common and remove
nova common util. All the deprecated pieces from folsom appear
to have already been removed, so no additional code changes needed
for this.
Change-Id: I9cbd6a67c30567cd7002e8e7fec93cfc209787fc
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/exception.py b/nova/exception.py index ab9265f5d..c3e1fe39e 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -175,10 +175,6 @@ class DBError(NovaException): super(DBError, self).__init__(str(inner_exception)) -class DeprecatedConfig(NovaException): - message = _("Fatal call to deprecated config %(msg)s") - - class DecryptionFailure(NovaException): message = _("Failed to decrypt text") |