Source code for f5.multi_device.exceptions

# Copyright 2016 F5 Networks Inc.

# 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.
#
#

'''These exceptions for clustering, devicegroup, and trustdomain.'''

from f5.sdk_exception import F5SDKError


[docs]class ClusterError(F5SDKError): def __init__(self, *args, **kwargs): super(ClusterError, self).__init__(*args, **kwargs)
[docs]class DeviceGroupError(F5SDKError): pass
[docs]class TrustDomainError(F5SDKError): pass
[docs]class AlreadyManagingCluster(ClusterError): pass
[docs]class ClusterNotSupported(ClusterError): pass
[docs]class ClusterOperationNotSupported(ClusterError): pass
[docs]class DeviceAlreadyInTrustDomain(TrustDomainError): pass
[docs]class MissingRequiredDeviceGroupParameter(ClusterError): pass
[docs]class NoClusterToManage(ClusterError): pass
[docs]class DeviceGroupNotSupported(DeviceGroupError): pass
[docs]class DeviceGroupOperationNotSupported(DeviceGroupError): pass
[docs]class DeviceNotTrusted(TrustDomainError): pass
[docs]class TrusteeNotInTrustDomain(TrustDomainError): pass
[docs]class UnexpectedDeviceGroupState(DeviceGroupError): pass
[docs]class UnexpectedDeviceGroupDevices(DeviceGroupError): pass
[docs]class UnexpectedDeviceGroupType(DeviceGroupError): pass