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