2011-10-25 16:50:08 -07:00
|
|
|
# Copyright 2010 Jacob Kaplan-Moss
|
|
|
|
# Copyright 2011 Nebula, Inc.
|
2013-08-15 16:56:22 -07:00
|
|
|
#
|
|
|
|
# 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.
|
2011-10-25 16:50:08 -07:00
|
|
|
"""
|
|
|
|
Exception definitions.
|
|
|
|
"""
|
|
|
|
|
2013-08-15 17:19:31 +03:00
|
|
|
#flake8: noqa
|
2014-02-17 12:06:36 +02:00
|
|
|
from keystoneclient.openstack.common.apiclient.exceptions import *
|
|
|
|
|
|
|
|
# NOTE(akurilin): This alias should be left here to support backwards
|
|
|
|
# compatibility until we are sure that usage of these exceptions in
|
|
|
|
# projects is correct.
|
|
|
|
ConnectionError = ConnectionRefused
|
|
|
|
HTTPNotImplemented = HttpNotImplemented
|
|
|
|
Timeout = RequestTimeout
|
2014-04-15 09:29:20 +10:00
|
|
|
HTTPError = HttpError
|
2013-10-15 11:21:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
class CertificateConfigError(Exception):
|
|
|
|
"""Error reading the certificate"""
|
|
|
|
def __init__(self, output):
|
|
|
|
self.output = output
|
|
|
|
msg = ("Unable to load certificate. "
|
|
|
|
"Ensure your system is configured properly.")
|
|
|
|
super(CertificateConfigError, self).__init__(msg)
|
2013-09-30 10:35:55 +10:00
|
|
|
|
|
|
|
|
2014-02-17 12:06:36 +02:00
|
|
|
class EmptyCatalog(EndpointNotFound):
|
|
|
|
"""The service catalog is empty."""
|
|
|
|
pass
|
2013-09-30 10:35:55 +10:00
|
|
|
|
|
|
|
|
2014-02-17 12:06:36 +02:00
|
|
|
class SSLError(ConnectionRefused):
|
2013-09-30 10:35:55 +10:00
|
|
|
"""An SSL error occurred."""
|
|
|
|
|
|
|
|
|
2013-09-23 11:50:57 +10:00
|
|
|
class DiscoveryFailure(ClientException):
|
|
|
|
"""Discovery of client versions failed."""
|
|
|
|
|
|
|
|
|
|
|
|
class VersionNotAvailable(DiscoveryFailure):
|
|
|
|
"""Discovery failed as the version you requested is not available."""
|
2013-12-09 16:46:09 +10:00
|
|
|
|
|
|
|
|
|
|
|
class MissingAuthPlugin(ClientException):
|
|
|
|
"""An authenticated request is required but no plugin available."""
|
2014-01-21 11:40:16 +10:00
|
|
|
|
|
|
|
|
|
|
|
class NoMatchingPlugin(ClientException):
|
|
|
|
"""There were no auth plugins that could be created from the parameters
|
|
|
|
provided."""
|