deb-python-os-cloud-config/os_cloud_config/exception.py
Jiri Stransky a147fe002d Initial Keystone users, roles, domains, projects
Functions to create initial users, roles, domains and projects in
Keystone. Not doing endpoint registration yet.

Adds gettextutils (translations) to openstack-common.conf. Adds mock
dependency for testing.

Partially implements: blueprint tripleo-keystone-cloud-config

Change-Id: I8ad106c4dbf793bada4e4a1141256ac72bb653db
2014-03-24 16:24:06 +01:00

51 lines
1.6 KiB
Python

# -*- coding: utf-8 -*-
# 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.
import logging
from os_cloud_config.openstack.common.gettextutils import _
LOG = logging.getLogger(__name__)
class CloudConfigException(Exception):
"""Base os-cloud-config 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.
"""
msg_fmt = _("An unknown exception occurred.")
def __init__(self, message=None, **kwargs):
self.kwargs = kwargs
if not message:
try:
message = self.msg_fmt % kwargs
except Exception:
# 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))
# at least get the core message out if something happened
message = self.msg_fmt
super(CloudConfigException, self).__init__(message)