/usr/lib/python2.6/site-packages/keystoneauth1/exceptions
NameSizeModeActions
auth.py6850644editdlrm
auth.pyc5240644editdlrm
auth_plugins.py29520644editdlrm
auth_plugins.pyc40970644editdlrm
base.py9440644editdlrm
base.pyc8190644editdlrm
catalog.py9790644editdlrm
catalog.pyc10900644editdlrm
connection.py15300644editdlrm
connection.pyc22100644editdlrm
discovery.py8730644editdlrm
discovery.pyc8470644editdlrm
http.py107770644editdlrm
http.pyc140960644editdlrm
response.py8300644editdlrm
response.pyc7970644editdlrm
service_providers.py9240644editdlrm
service_providers.pyc9220644editdlrm
__init__.py10540644editdlrm
__init__.pyc6260644editdlrm
Edit: /usr/lib/python2.6/site-packages/keystoneauth1/exceptions/response.py (830B)
# 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 keystoneauth1.exceptions import base __all__ = ['InvalidResponse'] class InvalidResponse(base.ClientException): message = "Invalid response from server." def __init__(self, response): super(InvalidResponse, self).__init__() self.response = response