diff options
Diffstat (limited to 'openstack/common/exception.py')
| -rw-r--r-- | openstack/common/exception.py | 4 |
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" |
