Fix pep8 error 1.E265 block comment should start with '# ' 2.H238 old style class declaration, use new style (inherit from `object`) Change-Id: I100b7c277c93a137ce9702fe9df2a7a43df9fb51
23 lines
855 B
Python
23 lines
855 B
Python
# Copyright (c) 2014 Rackspace Hosting.
|
|
#
|
|
# 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 openstack_dashboard import exceptions
|
|
# from solumclient.openstack.common.apiclient import exceptions as solumclient
|
|
|
|
NOT_FOUND = exceptions.NOT_FOUND
|
|
RECOVERABLE = exceptions.RECOVERABLE
|
|
# + (solumclient.ClientException,)
|
|
UNAUTHORIZED = exceptions.UNAUTHORIZED
|