summaryrefslogtreecommitdiffstats
path: root/openstack/common/exception.py
diff options
context:
space:
mode:
authorRajaram Mallya <rajarammallya@gmail.com>2011-08-31 08:29:34 +0530
committerRajaram Mallya <rajarammallya@gmail.com>2011-08-31 08:29:34 +0530
commit0ec0a05aafbeec0b02da7e08ee8de69b459495df (patch)
treec392257a23939c9fd823cb85d65c1dae920502b0 /openstack/common/exception.py
parent7f842efba56125e0903a13a9e50a925adef48bc2 (diff)
downloadoslo-0ec0a05aafbeec0b02da7e08ee8de69b459495df.tar.gz
oslo-0ec0a05aafbeec0b02da7e08ee8de69b459495df.tar.xz
oslo-0ec0a05aafbeec0b02da7e08ee8de69b459495df.zip
Rajaram|renamed AppBaseException to OpenstackException and app_config_dir_name to config_dir as per jaypipes' feedback
Diffstat (limited to 'openstack/common/exception.py')
-rw-r--r--openstack/common/exception.py4
1 files changed, 2 insertions, 2 deletions
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"