1
2
3
4
5
6
7
8
9
10
11
12
13
14 __doc__="""Exceptions
15
16 $Id: Exceptions.py,v 1.3 2003/09/25 15:04:19 edahl Exp $"""
17
18 __version__ = "$Revision: 1.3 $"[11:-2]
19
20 from Products.ZenUtils.Exceptions import ZentinelException
21
23
25 "failed to create a related object while appling maps"
26 pass
27
29 "Indicates a failed login to the remote device"
30 pass
31
33 "full command response was not received before timeout was reached"
34 pass
35
37 "a timeout occured while we were waiting for some data"
38 pass
39
41 "no telnet or ssh server found on a machine at the given port"
42 pass
43
45 "no command found to run"
46 pass
47
49 "no valid connection found to make"
50 pass
51