We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55bb818 commit a106179Copy full SHA for a106179
2 files changed
f5/common/pollster.py
f5/multi_device/cluster/__init__.py
@@ -14,16 +14,23 @@
14
#
15
16
17
-from f5.bigip.mixins import DeviceMixin
+from f5.sdk_exceptions import F5SDKError
18
+from f5.utils.mixins import DeviceMixin
19
from f5.multi_device.cluster.managers import DeviceGroupManager as dgm
20
from f5.multi_device.cluster.managers import TrustedPeerManager as peer_mgr
21
22
-class ClusterNotSupported(Exception):
23
+class ClusterError(F5SDKError):
24
+ def __init__(self, *arg, **kwargs):
25
+ #TODO: Place your logging 0ssmness here.
26
+ super(ClusterError, self).__init__(*args, **kwargs)
27
+
28
29
+class ClusterNotSupported(ClusterError):
30
pass
31
32
-class RootRemovalNotSupported(Exception):
33
+class RootRemovalNotSupported(ClusterError):
34
35
36
0 commit comments