1
2
3
4
5
6
7
8
9
10
11 __doc__="""Exceptions
12 Common exceptions for data collectors
13 """
14
15 from Products.ZenUtils.Exceptions import ZentinelException
16
18
20 "Failed to create a related object while appling maps"
21 pass
22
24 "Indicates a failed login to the remote device"
25 pass
26
28 "Full command response was not received before timeout was reached"
29 pass
30
32 "A timeout occured while we were waiting for some data"
33 pass
34
36 "No telnet or ssh server found on a machine at the given port"
37 pass
38
40 "No command found to run"
41 pass
42
44 "No valid connection found to make"
45 pass
46