blazar/climate/exceptions.py
Cristian A Sanchez 69b0497ab9 Update openstack.common with latest oslo-incubator
openstack.common was updated with the latest oslo-incubator changes.
rpc and notif were manually removed. DB layer was modified to adapt
to the changes done in Oslo. '# noqa' was also removed from imports.

Also after new release of oslo.messaging appeared, we also needed
to update openstack.common to make Climate work with oslo.

Change-Id: I1b5ce64f8d4906d1fcfea9379d115b7bb2ec3f7b
Closes-Bug: #1237896
Closes-Bug: #1284749
Partial-bug: #1253497
Co-Authored-By: Pablo Fernando Cargnelutti <pablo.fernando.cargnelutti@intel.com>
Co-Authored-By: Dina Belova <dbelova@mirantis.com>
2014-03-06 16:30:42 -03:00

91 lines
2.5 KiB
Python

# Copyright (c) 2013 Mirantis Inc.
# Copyright (c) 2013 Bull.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from climate.openstack.common.gettextutils import _
from climate.openstack.common import log as logging
LOG = logging.getLogger(__name__)
class ClimateException(Exception):
"""Base Climate Exception.
To correctly use this class, inherit from it and define
a 'msg_fmt' and 'code' properties.
"""
msg_fmt = _("An unknown exception occurred")
code = 500
def __init__(self, message=None, **kwargs):
self.kwargs = kwargs
if 'code' not in self.kwargs:
self.kwargs['code'] = self.code
if not message:
try:
message = self.msg_fmt % kwargs
except KeyError:
# kwargs doesn't match a variable in the message
# log the issue and the kwargs
LOG.exception(_('Exception in string format operation'))
for name, value in kwargs.iteritems():
LOG.error("%s: %s" % (name, value))
message = self.msg_fmt
super(ClimateException, self).__init__(message)
class NotFound(ClimateException):
"""Object not found exception."""
msg_fmt = _("Object with %(object)s not found")
code = 404
class NotAuthorized(ClimateException):
msg_fmt = _("Not authorized")
code = 403
class PolicyNotAuthorized(NotAuthorized):
msg_fmt = _("Policy doesn't allow %(action)s to be performed")
class ConfigNotFound(ClimateException):
msg_fmt = _("Could not find config at %(path)s")
class ServiceCatalogNotFound(NotFound):
msg_fmt = _("Could not find service catalog")
class WrongFormat(ClimateException):
msg_fmt = _("Unenxpectable object format")
class ServiceClient(ClimateException):
msg_fmt = _("Service %(service)s have some problems")
class TaskFailed(ClimateException):
msg_fmt = _('Current task failed')
class Timeout(ClimateException):
msg_fmt = _('Current task failed with timeout')