From 0ec0a05aafbeec0b02da7e08ee8de69b459495df Mon Sep 17 00:00:00 2001 From: Rajaram Mallya Date: Wed, 31 Aug 2011 08:29:34 +0530 Subject: Rajaram|renamed AppBaseException to OpenstackException and app_config_dir_name to config_dir as per jaypipes' feedback --- openstack/common/exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openstack/common/exception.py') diff --git a/openstack/common/exception.py b/openstack/common/exception.py index cd382d6..a81355e 100644 --- a/openstack/common/exception.py +++ b/openstack/common/exception.py @@ -117,7 +117,7 @@ def wrap_exception(f): return _wrap -class AppBaseException(Exception): +class OpenstackException(Exception): """ Base Exception @@ -139,5 +139,5 @@ class AppBaseException(Exception): return self._error_string -class InvalidContentType(AppBaseException): +class InvalidContentType(OpenstackException): message = "Invalid content type %(content_type)s" -- cgit