Files
solum-dashboard/solumdashboard/exceptions.py
zhurong b001c4f6c8 Fix pep8 error
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
2016-05-29 04:46:52 -04:00

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