666490bc78
due the hard string freeze fixed only in master branch Change-Id: If5ef3e0290e081cca56903882ffc86d9b11d7806
165 lines
4.5 KiB
Python
165 lines
4.5 KiB
Python
# Copyright 2011 VMware, Inc
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
"""
|
|
Tacker base exception handling.
|
|
"""
|
|
|
|
from oslo_utils import excutils
|
|
import six
|
|
|
|
from tacker._i18n import _
|
|
|
|
|
|
class TackerException(Exception):
|
|
"""Base Tacker Exception.
|
|
|
|
To correctly use this class, inherit from it and define
|
|
a 'message' property. That message will get printf'd
|
|
with the keyword arguments provided to the constructor.
|
|
"""
|
|
message = _("An unknown exception occurred.")
|
|
|
|
def __init__(self, **kwargs):
|
|
try:
|
|
super(TackerException, self).__init__(self.message % kwargs)
|
|
self.msg = self.message % kwargs
|
|
except Exception:
|
|
with excutils.save_and_reraise_exception() as ctxt:
|
|
if not self.use_fatal_exceptions():
|
|
ctxt.reraise = False
|
|
# at least get the core message out if something happened
|
|
super(TackerException, self).__init__(self.message)
|
|
|
|
if six.PY2:
|
|
def __unicode__(self):
|
|
return unicode(self.msg)
|
|
|
|
def __str__(self):
|
|
return self.msg
|
|
|
|
def use_fatal_exceptions(self):
|
|
"""Is the instance using fatal exceptions.
|
|
|
|
:returns: Always returns False.
|
|
"""
|
|
return False
|
|
|
|
|
|
class BadRequest(TackerException):
|
|
message = _('Bad %(resource)s request: %(msg)s')
|
|
|
|
|
|
class NotFound(TackerException):
|
|
pass
|
|
|
|
|
|
class Conflict(TackerException):
|
|
pass
|
|
|
|
|
|
class NotAuthorized(TackerException):
|
|
message = _("Not authorized.")
|
|
|
|
|
|
class ServiceUnavailable(TackerException):
|
|
message = _("The service is unavailable")
|
|
|
|
|
|
class AdminRequired(NotAuthorized):
|
|
message = _("User does not have admin privileges: %(reason)s")
|
|
|
|
|
|
class PolicyNotAuthorized(NotAuthorized):
|
|
message = _("Policy doesn't allow %(action)s to be performed.")
|
|
|
|
|
|
class PolicyInitError(TackerException):
|
|
message = _("Failed to init policy %(policy)s because %(reason)s")
|
|
|
|
|
|
class PolicyCheckError(TackerException):
|
|
message = _("Failed to check policy %(policy)s because %(reason)s")
|
|
|
|
|
|
class InUse(TackerException):
|
|
message = _("The resource is in use")
|
|
|
|
|
|
class MalformedRequestBody(BadRequest):
|
|
message = _("Malformed request body: %(reason)s")
|
|
|
|
|
|
class Invalid(TackerException):
|
|
def __init__(self, message=None):
|
|
self.message = message
|
|
super(Invalid, self).__init__()
|
|
|
|
|
|
class InvalidInput(BadRequest):
|
|
message = _("Invalid input for operation: %(error_message)s.")
|
|
|
|
|
|
class InvalidContentType(TackerException):
|
|
message = _("Invalid content type %(content_type)s")
|
|
|
|
|
|
class NetworkVlanRangeError(TackerException):
|
|
message = _("Invalid network VLAN range: '%(vlan_range)s' - '%(error)s'")
|
|
|
|
def __init__(self, **kwargs):
|
|
# Convert vlan_range tuple to 'start:end' format for display
|
|
if isinstance(kwargs['vlan_range'], tuple):
|
|
kwargs['vlan_range'] = "%d:%d" % kwargs['vlan_range']
|
|
super(NetworkVlanRangeError, self).__init__(**kwargs)
|
|
|
|
|
|
class DuplicatedExtension(TackerException):
|
|
message = _("Found duplicate extension: %(alias)s")
|
|
|
|
|
|
class MgmtDriverException(TackerException):
|
|
message = _("VNF configuration failed")
|
|
|
|
|
|
class AlarmUrlInvalid(BadRequest):
|
|
message = _("Invalid alarm url for VNF %(vnf_id)s")
|
|
|
|
|
|
class TriggerNotFound(NotFound):
|
|
message = _("Trigger %(trigger_name)s does not exist for VNF %(vnf_id)s")
|
|
|
|
|
|
class VnfPolicyNotFound(NotFound):
|
|
message = _("Policy %(policy)s does not exist for VNF %(vnf_id)s")
|
|
|
|
|
|
class VnfPolicyActionInvalid(BadRequest):
|
|
message = _("Invalid action %(action)s for policy %(policy)s, "
|
|
"should be one of %(valid_actions)s")
|
|
|
|
|
|
class VnfPolicyTypeInvalid(BadRequest):
|
|
message = _("Invalid type %(type)s for policy %(policy)s, "
|
|
"should be one of %(valid_types)s")
|
|
|
|
|
|
class DuplicateResourceName(TackerException):
|
|
message = _("%(resource)s with name %(name)s already exists")
|
|
|
|
|
|
class DuplicateEntity(Conflict):
|
|
message = _("%(_type)s already exist with given %(entry)s")
|