shipyard/shipyard_airflow/db/errors.py
Pete Birley 6ae83ed258 Linting: Make Shipyard mostly pep8 compliant
This PS makes shipyard mostly pep8 compliant, with the exeption of:
./shipyard_airflow/plugins/rest_api_plugin.py which will require some
rework to make compliant.

Change-Id: I913f7ac696eb5558c1fed7c4f4104211bf4b5876
2017-09-29 10:58:58 -05:00

24 lines
922 B
Python

# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
#
# 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.
class AirflowStateError(Exception):
def __init__(self, message=""):
"""
An error to convey that an attempt to modify airflow data cannot
be accomplished due to existing state.
:param message: Optional message for consumer
"""
self.message = message