Alexander Kislitsky b2a878e536 Update of resource_definitions content implemented
Now it is able to add, update, delete keys in resource
definition content.

Change-Id: I9624f97bf35eae15d6a7ddc2d5d42768292db4f0
2016-08-18 14:55:19 +00:00

44 lines
996 B
Python

# 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 BaseTuningboxError(Exception):
pass
class TuningboxIntegrityError(BaseTuningboxError):
pass
class TuningboxNotFound(BaseTuningboxError):
pass
class KeysOperationError(BaseTuningboxError):
pass
class UnknownKeysOperation(KeysOperationError):
pass
class KeysPathNotExisted(KeysOperationError):
pass
class KeysPathInvalid(KeysOperationError):
pass
class KeysPathUnreachable(KeysOperationError):
pass